-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (77 loc) · 2.88 KB
/
index.html
File metadata and controls
86 lines (77 loc) · 2.88 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Calendar</title>
</head>
<body>
<center>
<table cellpadding="15" cellspacing="0">
<tr>
<td colspan="7" align="center" bgcolor="#017aff">
<font color="white" face="Calibri" size="6">
November 2024
</font>
</td>
</tr>
<tr bgcolor="#017aff">
<td><font color="white" face="Calibri" size="4">Sun</font></td>
<td><font color="white" face="Calibri" size="4">Mon</font></td>
<td><font color="white" face="Calibri" size="4">Tue</font></td>
<td><font color="white" face="Calibri" size="4">Wed</font></td>
<td><font color="white" face="Calibri" size="4">Thu</font></td>
<td><font color="white" face="Calibri" size="4">Fri</font></td>
<td><font color="white" face="Calibri" size="4">Sat</font></td>
</tr>
</table>
<table border="1" cellpadding="19" cellspacing="1">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td align="center" bgcolor="yellow">1</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">4</td>
<td align="center">5</td>
<td align="center">6</td>
<td align="center">7</td>
<td align="center">8</td>
<td align="center">3</td>
<td align="center">9</td>
</tr>
<tr>
<td align="center">10</td>
<td align="center">11</td>
<td align="center">12</td>
<td align="center">13</td>
<td align="center">14</td>
<td align="center">15</td>
<td align="center">16</td>
</tr>
<tr>
<td align="center">17</td>
<td align="center">18</td>
<td align="center">19</td>
<td align="center">20</td>
<td align="center">21</td>
<td align="center">22</td>
<td align="center">23</td>
</tr>
<tr>
<td align="center">24</td>
<td align="center">25</td>
<td align="center">26</td>
<td align="center">27</td>
<td align="center">28</td>
<td align="center">29</td>
<td align="center">30</td>
</tr>
</table>
</center>
</body>
</html>