-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.html
More file actions
24 lines (24 loc) · 772 Bytes
/
clock.html
File metadata and controls
24 lines (24 loc) · 772 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clock</title>
<link rel="stylesheet" href="clock.css">
</head>
<body>
<div class="clock">
<svg width="110" height="110">
<circle id="face" cx="50" cy="50" r="50"/>
<line id="hourH" x1="50" y1="50" x2="50" y2="30"/>
<line id="minuteH" x1="50" y1="50" x2="50" y2="20"/>
<line id="secondH" x1="50" y1="50" x2="50" y2="15"/>
<line id="secondT" x1="50" y1="50" x2="50" y2="50"/>
<text x="42" y="14">12</text>
<text x="90" y="56">3</text>
<text x="48" y="96">6</text>
<text x="4" y="58">9</text>
</svg>
</div>
</body>
</html>