-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.33 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
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomodoro Timer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>POMODORO TiMER</h1>
<figure class="clock">
<div class="mins">00</div>
<div>:</div>
<div class="secs">00</div>
<audio
src="mixkit-security-facility-breach-alarm-994.wav"
></audio>
<svg class="progress-ring" height="120" width="120">
<circle
class="progress-ring__circle"
stroke-width="8"
fill="transparent"
r="50"
cx="60"
cy="60"
/>
</svg>
</figure>
<div class="btn-group">
<button class="start aa">start focus</button>
<button class="reset aa">reset</button>
<button class="pause aa">pause</button>
</div>
<form action=".">
<label for="" class = "cc">Focus Time</label>
<input type="number" value="1" id="focusTime" placeholder="Focus Time"/>
<label for="" class = "cc">Break Time</label>
<input type="number" value="1" id="breakTime" placeholder="Break Time"/>
<button type="submit" class = "aa" id = "bb">Save settings</button>
</form>
<footer>
</footer>
<script src = 'script.js'></script>
</body>
</html>