-
Notifications
You must be signed in to change notification settings - Fork 2
/
pomodoro.html
27 lines (24 loc) · 901 Bytes
/
pomodoro.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="pomodoro.css">
</head>
<body>
<div id="container">
<div id="timer">
<label id="timerText"></label>
</div>
<div id="controls">
<button name="work" onclick="countdown(1500);">Work</button>
<button name="shortBreak" onclick="countdown(300);">Short Break</button>
<button name="longBreak" onclick="countdown(900);">Long Break</button>
</div>
<div id="stop">
<button name="stop" onclick="stopTimer();">STOP</button>
</div>
<audio id="alarm" src="asset/alarmclock.mp3" preload="auto"></audio>
<script src="pomodoro.js"></script>
</div>
</body>
</html>