-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 964 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:600,700" rel="stylesheet">
<title>Digital Clock</title>
</head>
<body>
<div class="container">
<div class="clock">
<h1 class="font">
<div>
<span id="date">23</span>
<span id="month">23</span>
<span id="year">23</span>
</div>
<span id="day">TUE</span>
<span id="hours">12</span>
<span>:</span>
<span id="minutes">60</span>
<span>:</span>
<span id="seconds">60</span>
<span id="am_pm">AM</span>
</h1>
</div>
</div>
<script src="script.js"></script>
</body>
</html>