-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 962 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analog Clock 2.0</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="container">
<div class="clock">
<div class="wrapper">
<div class="hour-numbers"></div>
<div class="seconds-hand"></div>
<div class="clock-hands">
<div id="hour" class="hand hour"><i></i></div>
<div id="min" class="hand min"><i></i></div>
<div id="sec" class="hand sec"><i></i></div>
</div>
</div>
</div>
<div class="buttons">
<button id="playButton">Play</button>
<button id="pauseButton">Pause</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>