-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.04 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- my CSS -->
<link rel="stylesheet" href="style.css" />
<!-- favicon -->
<link rel="icon" type="image/png" href="clock-favicon.png" />
<title>Clock</title>
</head>
<body>
<h3>Analog Clock</h3>
<p>
View the current time.
</p>
<section>
<div class="clock-container">
<div class="clock">
<div class="hand hour"></div>
<div class="hand min"></div>
<div class="hand sec"></div>
<div class="number twelve">12</div>
<div class="number six">9</div>
<div class="number three">3</div>
<div class="number nine">9</div>
</div>
<div class="center-dot"></div>
</div>
</section>
<section>
<div class="digital-container">
<div class="num-time"></div>
</div>
</section>
<!-- my script -->
<script src="script.js"></script>
</body>
</html>