-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (40 loc) · 1.45 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
<!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'>
<link href='https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;600&display=swap' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<title>Chun's Pomodoro Timer</title>
</head>
<body>
<main class='center'>
<section class='space'>
<div class='circle1'></div>
<div class='circle2'></div>
<div class='box1'></div>
<div class='box2'></div>
<div class='box3'></div>
<div class='box4'></div>
<section id='inner-circle'>
<section class='content'>
<h1>Work</h1>
<p><span class='timer'>00:00</span></p>
<form>
<input type='number' value='25' id='length'>
<label for='length'>minutes</label>
</form>
<p class='button-group'>
<button class='start'>start</button>
<button class='clear'>clear</button><br>
<button class='timer-button'>Take a break ☕️</button>
</p>
</section>
</section>
</section>
</main>
<audio id='audio' src='http://www.soundjay.com/button/beep-07.wav' autoplay='false'></audio>
<script src="app.js"></script>
</body>
</html>