- Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
30 lines (30 loc) · 1005 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1005 Bytes
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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<metahttp-equiv="X-UA-Compatible" content="ie=edge">
<linkhref="styles.css" rel="stylesheet">
<scriptdefersrc="script.js"></script>
<title>Clock</title>
</head>
<body>
<divclass="clock">
<divclass="hand hour" data-hour-hand></div>
<divclass="hand minute" data-minute-hand></div>
<divclass="hand second" data-second-hand></div>
<divclass="number number1">1</div>
<divclass="number number2">2</div>
<divclass="number number3">3</div>
<divclass="number number4">4</div>
<divclass="number number5">5</div>
<divclass="number number6">6</div>
<divclass="number number7">7</div>
<divclass="number number8">8</div>
<divclass="number number9">9</div>
<divclass="number number10">10</div>
<divclass="number number11">11</div>
<divclass="number number12">12</div>
</div>
</body>
</html>