-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.html
executable file
·63 lines (60 loc) · 2.21 KB
/
test.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en" style="overflow-y: auto;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Attendance Sheet</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
</head>
<body style="background: linear-gradient(to bottom, rgb(2, 13, 226) 30%, transparent); overflow-y: auto;">
<div class="container p-6">
<div class="box mb-1">
<h1 class="title is-size-1 has-text-black">
Class: <span class="ml-2">DSA 101: Searching III</span>
</h1>
<h2 class="subtitle is-size-4 has-text-black">
<p>
Start Timings: <span class="ml-2 has-text-weight-bold">15-11-23 09:00 Hrs</span>
</p>
<p>
End Timings: <span class="ml-2 has-text-weight-bold">15-11-23 12:00 Hrs</span>
</p>
</h2>
</div>
<span class="mt-1 is-size-6 has-text-black is-italic">*Data refreshes every 5 minutes</span>
<div class="content mt-4">
<table class="table is-striped">
<thead>
<tr>
<th>Roll No.</th>
<th>Name</th>
<th>Attendance</th>
</tr>
</thead>
<tbody>
<tr>
<td>23BCS10138</td>
<td>Aditya Prasad Dash</td>
<td>Present</td>
</tr>
<tr>
<td>23BCS10187</td>
<td>Riya Rajan Bhurse</td>
<td>Present</td>
</tr>
<tr>
<td>23BCS10143</td>
<td>Aditya Kumar Singh</td>
<td>Absent</td>
</tr>
<tr>
<td>23BCS10164</td>
<td>Gowtham Sai Yadav</td>
<td>Proxy</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>