-
Notifications
You must be signed in to change notification settings - Fork 0
/
timetable.html
136 lines (136 loc) · 4.58 KB
/
timetable.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<html>
<head>
<style>
table,tr,td,th{
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th></th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</tr>
</thead>
<tbody>
<tr>
<td class="class-time">6.00am - 8.00am</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="workout">
<h5>WEIGHT LOOSE</h5>
<span>RLefew D. Loee</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="fitness">
<h5>Cardio</h5>
<span>RLefew D. Loee</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="workout">
<h5>Yoga</h5>
<span>Keaf Shen</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="fitness">
<h5>Fitness</h5>
<span>Kimberly Stone</span>
</td>
<td class="dark-bg blank-td"></td>
<td class="hover-dp ts-meta" data-tsmeta="motivation">
<h5>Boxing</h5>
<span>Rachel Adam</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="workout">
<h5>Body Building</h5>
<span>Robert Cage</span>
</td>
</tr>
<tr>
<td class="class-time">10.00am - 12.00am</td>
<td class="blank-td"></td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="fitness">
<h5>Fitness</h5>
<span>Kimberly Stone</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="workout">
<h5>WEIGHT LOOSE</h5>
<span>RLefew D. Loee</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="motivation">
<h5>Cardio</h5>
<span>RLefew D. Loee</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="workout">
<h5>Body Building</h5>
<span>Robert Cage</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="motivation">
<h5>Karate</h5>
<span>Donald Grey</span>
</td>
<td class="blank-td"></td>
</tr>
<tr>
<td class="class-time">5.00pm - 7.00pm</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="fitness">
<h5>Boxing</h5>
<span>Rachel Adam</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="motivation">
<h5>Karate</h5>
<span>Donald Grey</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="workout">
<h5>Body Building</h5>
<span>Robert Cage</span>
</td>
<td class="blank-td"></td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="workout">
<h5>Yoga</h5>
<span>Keaf Shen</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="motivation">
<h5>Cardio</h5>
<span>RLefew D. Loee</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="fitness">
<h5>Fitness</h5>
<span>Kimberly Stone</span>
</td>
</tr>
<tr>
<td class="class-time">7.00pm - 9.00pm</td>
<td class="hover-dp ts-meta" data-tsmeta="motivation">
<h5>Cardio</h5>
<span>RLefew D. Loee</span>
</td>
<td class="dark-bg blank-td"></td>
<td class="hover-dp ts-meta" data-tsmeta="fitness">
<h5>Boxing</h5>
<span>Rachel Adam</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="workout">
<h5>Yoga</h5>
<span>Keaf Shen</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="motivation">
<h5>Karate</h5>
<span>Donald Grey</span>
</td>
<td class="dark-bg hover-dp ts-meta" data-tsmeta="fitness">
<h5>Boxing</h5>
<span>Rachel Adam</span>
</td>
<td class="hover-dp ts-meta" data-tsmeta="workout">
<h5>WEIGHT LOOSE</h5>
<span>RLefew D. Loee</span>
</td>
</tr>
</tbody>
</table>
</body>
</html>