-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pomodoro Timer</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Bangers" rel="stylesheet">
</head>
<body>
<div class="container">
<h1> < Pomodoro Time > </h1>
<div id="pomodoro">
<img src="https://png.kisspng.com/sh/56e81b5854873f311d8b3b1a2fc5a28d/L4Dxd3E5UME5OGY1TZHCdYeye7r6kCBvb151hOd2LYTyfbL7j713bZhqjNNrbHWwdrF2hL1kdJp1RdN7dD24cbbrWMZiOWJrT6k7MD66RoSBVscxPmI6SqcAMUW8Q4i4Usg6NqFzf3==/kisspng-plum-tomato-vegetable-food-clip-art-5aed86a11f7720.7638670615255159371289.png" style="width:350px; height:350px">
<div id="status"></div>
<div class="timerDisplay">25:00</div>
<button id="start-btn" class="btn">START</button>
</div>
<div class="settings">
<div id="work">
<p>WORK</p>
<button class="btn-settings" id="work-plus">+</button>
<div><span id="work-min">25</span> mins</div>
<button class="btn-settings" id="work-minus">-</button>
</div>
<button id="reset" class="btn">RESET</button>
<div id="break">
<p>BREAK</p>
<button class="btn-settings" id="break-plus">+</button>
<div><span id="break-min">5</span> mins</div>
<button class="btn-settings" id="break-minus">-</button>
</div>
</div>
<p class="footer">Designed by <a href="https://github.com/AntonellaMorittu" target="blank">Antonella Morittu</a></p
</div>
<script src="js/index.js"></script>
</body>
</html>