-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 1.13 KB
/
index.html
File metadata and controls
36 lines (35 loc) · 1.13 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Timer</title>
<!-- font awesome! -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css" integrity="sha512-xA6Hp6oezhjd6LiLZynuukm80f8BoZ3OpcEYaqKoCV3HKQDrYjDE1Gu8ocxgxoXmwmSzM4iqPvCsOkQNiu41GA==" crossorigin="anonymous" />
<link rel="stylesheet" href="style.css">
</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>