-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalender Table .html
More file actions
97 lines (90 loc) · 2.07 KB
/
Calender Table .html
File metadata and controls
97 lines (90 loc) · 2.07 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
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calender</title>
</head>
<body>
<!-- cellSpacing used for gap margins between whole elements -->
<table
border="2"
width="600"
align="center"
cellpadding="10"
cellspacing="10"
>
<tr>
<th colspan="7" align="center" bgcolor="green" style="color: white">
<strong><i>Thursday, May 8</i></strong>
</th>
</tr>
<tr>
<th colspan="7">May 2025</th>
</tr>
<tr bgcolor="green" style="color: white">
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th bgcolor="red">Fri</th>
<th bgcolor="red">Sat</th>
</tr>
<tr align="center">
<td>27</td>
<td>28</td>
<td>29</td>
<td>30</td>
<td style="font-weight: bold">1</td>
<td style="font-weight: bold">2</td>
<td style="font-weight: bold">3</td>
</tr>
<tr align="center" style="font-weight: bold">
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
</tr>
<tr align="center" style="font-weight: bold">
<td>11</td>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
<td>16</td>
<td>17</td>
</tr>
<tr align="center" style="font-weight: bold">
<td>18</td>
<td>19</td>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
</tr>
<tr align="center" style="font-weight: bold">
<td>25</td>
<td>26</td>
<td>27</td>
<td>28</td>
<td>29</td>
<td>30</td>
<td>31</td>
</tr>
<tr align="center">
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
</tr>
</table>
</body>
</html>