-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.13 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Calendar</title>
<link type="text/css" rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<div id="container">
<div id="header">
<button id="prev">Prev</button>
<label for="months">Months</label>
<select id="months" name="months">
</select>
<label for="years">Years</label>
<select id="years" name="years">
</select>
<button id="next">Next</button>
</div>
<table>
<thead>
<tr>
<th>Sun</th>
<th>Mon</th>
<th>Tues</th>
<th>Wed</th>
<th>Thur</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</thead>
<tbody id="calendar">
</tbody>
</table>
</div>
</body>
</html>