-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
31 lines (30 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="pomo.js"></script>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue:ital@1&display=swap" rel="stylesheet">
</head>
<body>
<div id="pomodoro">
<div id="timer">
<div id="menssage"></div>
<div id="audio" hidden="true" >
</div>
<div id="time">
<div id="minutes">25</div>
<div>:</div>
<div id="seconds">00</div>
</div>
<div id="buttons">
<button id="start"> Start</button>
<button id="pause"> Pause</button>
<button id="stop"> Stop</button>
</div>
</div>
</div>
</body>
</html>