-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (42 loc) · 1.72 KB
/
index.html
File metadata and controls
57 lines (42 loc) · 1.72 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pomodoro</title>
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<div id="verticalCentre">
<header>
<h1 id="title">
P
<span><img class="pom" src="noun_pomodoro_921666.svg"></span>
M
<span><img class="pom" src="noun_pomodoro_921667.svg"></span>
D
<span><img class="pom" src="noun_pomodoro_921666.svg"></span>
R
<span><img class="pom" src="noun_pomodoro_921667.svg"></span>
</h1>
</header>
<div id="banner">
<p id="text">Move slider to set your timer, click start & smash it!</p>
</div>
<div id="slider">
<input type="range" min="0" max="50" value="25" class="slider" id="studyRange"><br>
<!--<button id="default">reset slider</button>-->
</div>
<div id="timer">
<p id="countdown"><span><img class="clock" src="noun_Alarm Clock_1.svg"></span> 25 mins 00 secs</p>
<button id="start">start</button>
<button id="cancel">cancel</button>
</div>
</div>
<div id="credits">
<cite><a href="https://thenounproject.com/mikicon/collection/pomodoro/" target="_blank">Pomodoro images</a> by mikicon from the <a href="https://thenounproject.com" target="_blank">Noun Project</a></cite><br>
<cite><a href="https://thenounproject.com/indygo/collection/clock-2/" target="_blank">Alarm Clock images</a> by kiddo from the <a href="https://thenounproject.com" target="_blank">Noun Project</a></cite>
</div>
<script src="script.js"></script>
</body>
</html>