-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
69 lines (65 loc) · 1.45 KB
/
sample.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
<html>
<head>
<link rel="stylesheet" href="main.css" type="text/css">
</head>
</html>
table>
<caption>My daily schedule</caption>
<thead>
<tr>
<th> </th>
<th scope="col">
Time
</th>
<th scope="col">
Activity
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Morning</th>
<td>
<time datetime="08:00">8am</time>-
<time
datetime="11:00">11am</time>
</td>
<td>write code</td>
</tr>
<tr>
<th scope="row">Break</th>
<td>
<time datetime="11:00">11am</time>--
<time
datetime="12:00">12pm</time>
</td>
<td>Eat launch</td>
</tr>
<tr>
<th scope="row">Afternoon</th>
<td>
<time datetime="12:00">12pm</time>--
<time
datetime="17:00">17pm</time>
</td>
<td>Study for other course</td>
</tr>
<tr>
<th scope="row">Evening</th>
<td rowspan="2">All other times</td>
<td>Free time</td>
</tr>
<tr>
<th scope="row">Night</th>
<td>Sleep</td>
</tr>
</tbody>
<tfoot>
<tr>
</tr>
<td colspan="3">And thats what i do everyday, five days a week
just eat, sleep, code...and Recharge
</td>
</tr>
</tfoot>
</table>