-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 960 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calender - Day view</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div class="container clearfix">
<div class="button-group">
<a id="today" class="btn btn--quad btn__raised" href="#currentTimeMarker">Today</a>
<a id="previous_day" class="btn btn--round btn__raised" href="#calender"><</a>
<a id="next_day" class="btn btn--round btn__raised" href="#calender">> </a>
</div>
<div id="renderDateTime"></div>
</div>
</div>
<div id="calender">
<table>
<tbody>
<tr height="1">
<td style="width: 30px;"></td>
<td colspan="1" id="markers"></td>
</tr>
<tr id="dayView">
<td id="time_lable"></td>
<td id="events"></td>
</tr>
</tbody>
</table>
</div>
<script src="jquery.min.js"></script>
<script src="moment.js"></script>
<script src="script.js"></script>
</body>
</html>