-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcalendar.html
More file actions
32 lines (29 loc) · 857 Bytes
/
calendar.html
File metadata and controls
32 lines (29 loc) · 857 Bytes
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
<html>
<head>
<title>Calendar</title>
<meta charset="UTF-8"></meta>
<link rel="stylesheet" href="calendar.css"/>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="calendar.js"></script>
</head>
<body>
<table id="calendar">
<tr id="monthrow">
<th colspan="7">
<button id="prev" onclick="prevMonth()">❮</button>
<span id="month"></span>
<button id="next" onclick="nextMonth()">❯</button>
</th>
</tr>
<tr class="daysoftheweek">
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</table>
</body>
</html>