forked from arnav-t/what-slot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tt.html
78 lines (78 loc) · 1.59 KB
/
tt.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<table class="table">
<thead>
<tr>
<th scope="col">Day</th>
<th scope="col">8:00 - 8:55</th>
<th scope="col">9:00 - 9:55</th>
<th scope="col">10:00 - 10:55</th>
<th scope="col">11:00 - 11:55</th>
<th scope="col">12:00 - 12:55</th>
<th scope="col">14:00 - 14:55</th>
<th scope="col">15:00 - 15:55</th>
<th scope="col">16:00 - 16:55</th>
<th scope="col">17:00 - 17:55</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Monday</th>
<td id="00"></td>
<td id="01"></td>
<td id="02"></td>
<td id="03"></td>
<td id="04"></td>
<td id="05"></td>
<td id="06"></td>
<td id="07"></td>
<td id="08"></td>
</tr>
<tr>
<th scope="row">Tuesday</th>
<td id="10"></td>
<td id="11"></td>
<td id="12"></td>
<td id="13"></td>
<td id="14"></td>
<td id="15"></td>
<td id="16"></td>
<td id="17"></td>
<td id="18"></td>
</tr>
<tr>
<th scope="row">Wednesday</th>
<td id="20"></td>
<td id="21"></td>
<td id="22"></td>
<td id="23"></td>
<td id="24"></td>
<td id="25"></td>
<td id="26"></td>
<td id="27"></td>
<td id="28"></td>
</tr>
<tr>
<th scope="row">Thursday</th>
<td id="30"></td>
<td id="31"></td>
<td id="32"></td>
<td id="33"></td>
<td id="34"></td>
<td id="35"></td>
<td id="36"></td>
<td id="37"></td>
<td id="38"></td>
</tr>
<tr>
<th scope="row">Friday</th>
<td id="40"></td>
<td id="41"></td>
<td id="42"></td>
<td id="43"></td>
<td id="44"></td>
<td id="45"></td>
<td id="46"></td>
<td id="47"></td>
<td id="48"></td>
</tr>
</tbody>
</table>