n1/student_attendance.html
Aritra Banik 0d3ee9188e 001
2024-05-26 15:18:13 +05:30

34 lines
831 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Student Attendance</title>
</head>
<body>
<header>
<h1>Student Attendance</h1>
</header>
<main>
<table>
<thead>
<tr>
<th>Student Name</th>
<th>Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>2023-08-25</td>
<td>Present</td>
</tr>
<!-- Add more rows for each student -->
</tbody>
</table>
</main>
</body>
</html>