-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Calendar</title>
<link rel="stylesheet" type="text/css" href="calendar.css">
</head>
<body>
<div id="calendar">
<div id="month">
<button class="btn" id="prevyear">«</button>
<button class="btn" id="prevmonth">‹</button>
<h3 id="date"></h3>
<button class="btn" id="nextmonth">›</button>
<button class="btn" id="nextyear">»</button>
</div>
<table>
<thead>
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</thead>
<tbody>
<colgroup>
<col style="background-color: #f00">
<col span="2">
</colgroup>
<tr>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td><td></td><td></td>
</tr>
</tbody>
</table>
<div id="today"><button id="yo"><span>Today</span></button><h3 id="currdate"></h3></div>
</div>
</body>
<script type="text/javascript" src="calendar.js"></script>
</html>