-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (26 loc) · 821 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript Analog Clock</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href='https://fonts.googleapis.com/css?family=Annie Use Your Telescope' rel='stylesheet'>
<link rel="icon" type="image/x-icon" href="images/favicon.ico" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="clock">
<div class="clock-face">
<div class="hand" id="hour-hand"></div>
<div class="hand" id="minute-hand"></div>
<div class="hand" id="second-hand"></div>
</div>
</div>
</body>
<footer class="footer">
<div class="footer_contents">
Copyright © Raman Preet Singh 2020
</div>
</footer>
<script src="js/time-tracker.js"></script>
</html>