-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.html
40 lines (39 loc) · 1.23 KB
/
display.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Jeevan" />
<meta name="keywords" content="Registered Students" />
<link rel="icon" href="favicon.jpg" type="image/jpg" />
<link rel="stylesheet" href="style.css">
<title>Registered Students</title>
</head>
<body>
<header>
<h1>Registered Students</h1>
<p>Manage the list of registered students below.</p>
<nav>
<button onclick="window.location.href='index.html'" class="pages">Back to Registration</button>
</nav>
</header>
<main>
<div class="table-container">
<table id="studentTable">
<thead>
<tr>
<th>Student Name</th>
<th>Student ID</th>
<th>Email ID</th>
<th>Class</th>
<th>Contact Number</th>
<th>Edit | Delete</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</main>
<script src="script.js"></script>
</body>
</html>