-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 877 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
<!DOCTYPE html>
<html>
<head>
<title>Tell me the time!</title>
<meta charset="UTF-8">
<script type="application/javascript" src="js/timeteller.js" defer></script>
<script type="application/javascript" src="js/clock.js" defer></script>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/clock.css">
</head>
<body>
<h2>Good <span id="daypart"></span>, the time is</h2>
<div class="clock">
<div class="clock-container">
<div class="clock-inner">
<div class="hand-container-hour">
<div class="hour"></div>
</div>
<div class="hand-container-minute">
<div class="minute"></div>
</div>
<div class="hand-container-second">
<div class="second"></div>
<div class="second-tail"></div>
</div>
</div>
</div>
</div>
<h3 id="text" class="time"><h3>
</body>
</html>