-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 832 Bytes
/
index.html
File metadata and controls
36 lines (31 loc) · 832 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
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/72dc9b7e0d.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="timer">
<div class="controls">
<input id="duration" value="3" />
<div>
<button id="start"><i class="fas fa-play"></i></button>
<button id="pause"><i class="fas fa-pause"></i></button>
</div>
</div>
<svg class="dial">
<circle
fill="transparent"
stroke="green"
stroke-width="15"
r="190"
cx="0"
cy="200"
transform="rotate(-90 100 100)"
/>
</svg>
</div>
<script src="timer.js"></script>
<script src="app.js"></script>
</body>
</html>