-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="icon.png" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="script.js" defer></script>
<title>Clock</title>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" id="clock_area">
<defs id="defs1">
<linearGradient id="linearGradient11">
<stop style="stop-color:#80C080;" offset="0.86436778" id="stop13" />
<stop style="stop-color:#A4D1A4;" offset="0.93942523" id="stop12" />
<stop style="stop-color:#008000;" offset="1" id="stop15" />
</linearGradient>
<radialGradient xlink:href="#linearGradient11" id="radialGradient12" cx="128" cy="128" fx="128" fy="128"
r="128" gradientUnits="userSpaceOnUse" />
</defs>
<g class="ticks"></g>
<g class="marks"></g>
<g class="hands">
<use href="parts/hour-hand.svg#root" id="hour_hand" x="0" y="24" height="52" fill="green" />
<use href="parts/minute-hand.svg#root" id="minute_hand" x="0" y="14" height="72" fill="orange" />
<use href="parts/second-hand.svg#root" id="second_hand" x="0" y="9" height="82" fill="purple" />
</g>
<use href="parts/frame.svg#root" x="0" y="0" width="100" height="100" fill="url(#radialGradient12)" />
</svg>
</body>
</html>