-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 901 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pomodoro Clock - The Odin Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>POMODORO CLOCK</h1>
<h2 class="mode" id="mode"></h2>
<p class="timer" id="timer"></p>
<div class="actions">
<button type="button" class="start" id="start">START</button>
<button type="button" class="stop" id="stop">STOP</button>
</div>
<div class="pomodoro-icons" id="pomodoro-icons">
<img src="images/boxing.png"></img>
<img src="images/boxing.png"></img>
<img src="images/boxing.png"></img>
<img src="images/boxing.png"></img>
</div>
</div>
</body>
<script type="text/javascript" src="scripts/pomodoro.js"></script>
<script type="text/javascript" src="scripts/script.js"></script>
</html>