-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.27 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
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>Analog Clock</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Welcome to Analog Clock</h2>
<div class="clock">
<div class="needle hr" style="--h:66px; --color:blue"><span style="width: 7px;"></span></div>
<div class="needle mn" style="--h:85px; --color:white"><span></span></div>
<div class="needle ss" style="--h:104px; --color:rgb(255,0,108)"><span style="width: 3px;"></span></div>
<ul>
<li style="--i:1"><span>1</span></li>
<li style="--i:2"><span>2</span></li>
<li style="--i:3"><span>3</span></li>
<li style="--i:4"><span>4</span></li>
<li style="--i:5"><span>5</span></li>
<li style="--i:6"><span>6</span></li>
<li style="--i:7"><span>7</span></li>
<li style="--i:8"><span>8</span></li>
<li style="--i:9"><span>9</span></li>
<li style="--i:10"><span>10</span></li>
<li style="--i:11"><span>11</span></li>
<li style="--i:12"><span>12</span></li>
</ul>
</div>
<script src="script.js"></script>
</body>
</html>