34 lines
831 B
HTML
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> |