-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtable.html
More file actions
49 lines (41 loc) · 1.21 KB
/
Copy pathtable.html
File metadata and controls
49 lines (41 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Html learn
</title>
</head>
<body>
<h4>The daily schedules</h4>
<table border: "5" ; style="background-color:black">
<tr align="center"; style="background-color:aquamarine"> <!-- Table Row-->
<th width="200">Saturday</th> <!--Table header-->
<th width="200">Sunday</th>
<th width="200">Monday</th>
<th width="200">Tuesday</th>
<th width="200">Wednesday</th>
<th width="200">Thersday</th>
<th width="200">Friday</th>
</tr>
<tr align="center"; style="background-color:aquamarine">
<td>University Work</td>
<td>University Study</td>
<td>Compatitive Programming</td>
<td>Revising</td>
<td>Revising</td>
<td>Development</td>
<td>Gaming</td>
</tr>
<tr align="center"; style="background-color:aquamarine">
<td height="40">Study Drops</td>
<td height="40">Study regular/td>
<td height="40">Study regular</td>
<td height="40">Study Drop</td>
<td height="40">Project Work</td>
<td height="40">Project Work</td>
<td height="40">Gaming</td>
</tr>
</table>
</body>
</html>