-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
46 lines (43 loc) · 1.29 KB
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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Records Manager</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<h1>Student Records Manager</h1>
</header>
<!-- Add Student Form -->
<section class="form-section">
<form id="studentForm" class="student-form">
<input type="text" id="name" placeholder="Name" class="input-field" required>
<input type="text" id="department" placeholder="Department" class="input-field" required>
<input type="number" id="level" placeholder="Level" class="input-field" required>
<button type="submit" class="btn btn-add">Add Student</button>
</form>
</section>
<!-- Student List Table -->
<section class="table-section">
<table id="studentTable" class="student-table">
<thead>
<tr>
<th>Name</th>
<th>Department</th>
<th>Level</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Students will appear here -->
</tbody>
</table>
</section>
</div>
<script src="js/main.js"></script>
</body>
</html>