-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.21 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analog Clock</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="clock">
<div style="--clr:#ff3d58; --height:45px" class="hand" id="hour"><i></i></div>
<div style="--clr:#00a6ff; --height:70px" class="hand" id="min"><i></i></div>
<div style="--clr:#ffffff; --height:95px" class="hand" id="sec"><i></i></div>
<span style=" --i:1"><b>1</b></span>
<span style=" --i:2"><b>2</b></span>
<span style=" --i:3"><b>3</b></span>
<span style=" --i:4"><b>4</b></span>
<span style=" --i:5"><b>5</b></span>
<span style=" --i:6"><b>6</b></span>
<span style=" --i:7"><b>7</b></span>
<span style=" --i:8"><b>8</b></span>
<span style=" --i:9"><b>9</b></span>
<span style=" --i:10"><b>10</b></span>
<span style=" --i:11"><b>11</b></span>
<span style=" --i:12"><b>12</b></span>
</div>
</div>
<script src="script.js"></script>
</body>
</html>