-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpomodoro.html
54 lines (36 loc) · 1.25 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="../../picture/favicon2.png" />
<title id="tabTitle">Pomodoro</title>
<link rel="stylesheet" href="pomodoro.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="pomodoro.js"></script>
</head>
<body>
<div id="pomodoroClock">
<!-- title -->
<h1 id="title">Pomodoro</h1>
<div id="input">
<!-- timer length -->
<h2>Arbeit: 25 min</h2>
<!-- break length -->
<h2>Pause: 5 min</h2>
</div>
<!-- display -->
<div id="output">
<h2 id="kindOfSession">Arbeit</h2>
<h1 id="timeOutput"> 25:00 </h1>
</div>
<!-- start stop reset -->
<div id="controls">
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="reset">Reset</button>
</div>
</div>
</body>
</html>