-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (45 loc) · 1.21 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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Time Timer</title>
<link rel="stylesheet" href="style.css" />
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<svg id="timer" viewbox="0 0 32 32">
<image
href="https://cdn.glitch.global/a4d114d0-86a7-4f80-ba12-95f3b0ba963b/timer.png?v=1699698530645"
width="32"
height="32"
/>
<g id="timerElements">
<path id="sector" fill="red"></path>
<line
id="timerHand"
x1="16"
y1="16"
x2="16"
y2="16"
stroke="darkred"
stroke-width="0.2"
></line>
<image
id="knob"
href="https://cdn.glitch.global/a4d114d0-86a7-4f80-ba12-95f3b0ba963b/knob.png?v=1699640509159"
width="5"
height="5"
x="13.5"
y="13.5"
></image>
</g>
</svg>
<audio
id="alarm"
src="https://cdn.glitch.global/a4d114d0-86a7-4f80-ba12-95f3b0ba963b/alarm.wav?v=1699704359595"
type="audio/wav"
></audio>
<script src="script.js"></script>
</body>
</html>