-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 897 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<title>Analog Clock - by nibble-4bits</title>
</head>
<body>
<div id="flex-wrapper">
<div id="clock">
<div id="center"></div>
<div class="hand" id="hour-hand"></div>
<div class="hand" id="minute-hand"></div>
<div class="hand" id="second-hand"></div>
</div>
</div>
<footer>
<p class="footer-info">
Made with ❤️ by SANYA (<a
href="https://github.com/nibble-4bits/vanillajs-analog-clock"
rel="noopener noreferrer"
target="_blank"
>Source code</a
>)
</p>
</footer>
<script src="index.js"></script>
</body>
</html>