-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (35 loc) · 1023 Bytes
/
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">
<title>Pomodoro Timer</title>
<link rel="icon" href="src/alarm.svg" type="image/svg+xml">
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<div class="container">
<input class="task" type="text" placeholder="Task Name" size="28">
<div class="timer">
<span class="min">25</span>:<span class="sec">00</span>
</div>
<p align="center">
<button class="playBtn" onclick="playTimer()" title="Play Pomodoro">
<img src="src/play.svg">
</button>
<button class="resetBtn" onclick="resetTimer()" disabled="true" title="Reset Timer">
<img src="src/arrow-counterclockwise.svg">
</button>
<button onclick="setBreak()" title="Take a break">
<img src="src/cup-hot.svg">
</button>
<button onclick="" title="Info">
<img src="src/info-lg.svg">
</button>
<button onclick="" title="Settings">
<img src="src/gear.svg">
</button>
</p>
</div><!-- .container -->
<script src="src/script.js"></script>
</body>
</html>