-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
25 lines (24 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Current Time</title>
<!-- Comment the following line out if you want to use offline fonts-->
<!-- <link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet"> -->
<!-- Uncomment the following line if you want to use offline fonts. You also have to download those fonts. See fonts/download.sh -->
<link href="stylesheets/offline-fonts.css" rel="stylesheet">
<link href="stylesheets/style.css" rel="stylesheet">
</head>
<body>
<div id="time" class="valign-wrapper fat center-text"></div>
<!-- Comment the following line out if you want to use offline javascripts-->
<!--
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="http://momentjs.com/downloads/moment.js"></script>
-->
<!-- Uncomment the following line if you want to use offline javascripts. You also have to download those javascripts. See js/download.sh -->
<script src="js/vendor/jquery-3.1.1.min.js"></script>
<script src="js/vendor/moment.js"></script>
<!-- Leave this line alone -->
<script src="js/index.js"></script>
</body>
</html>