-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (62 loc) · 2.05 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css"
/>
<title>Horloge Podomoro</title>
</head>
<body>
<div class="title has-text-centered">
<h1>Horloge Pomodoro</h1>
</div>
<div class="container has-text-centered">
<div id="pomodoro" class="container has-text-centered">
<div id="status" class="has-text-weight-semibold">
Il faut travailler!
</div>
<div class="timerDisplay">25:00</div>
<button id="start-btn" class="button">Go!</button>
<div id="statusAutre"></div>
</div>
</div>
<div id="work" class="container has-text-centered">
<div class="has-text-centered">
<h2>Durée du travail</h2>
<div class="level-item has-text-centered">
<span id="work-min">25</span> mins
</div>
<div class="Columns">
<button class="button" id="work-plus">+</button>
<button class="button" id="work-minus">-</button>
</div>
</div>
<div class="container has-text-centered">
<button id="reset" class="button">Redémarer</button>
</div>
<div id="break" class="container has-text-centered">
<p>Durée de la pause</p>
<div><span id="break-min">5</span> mins</div>
<button class="button" id="break-plus">+</button>
<button class="button" id="break-minus">-</button>
</div>
</div>
<div class="container has-text-centered">
<div>Test de son :</div>
<button class="button" id="testSon">Sonnerie</button>
</div>
<div class="container has-text-centered">
<div>Nombre de pomodoros :</div>
<span id="resultatAffichage" class="has-text-weight-semibold">5</span>
</div>
<p class="footer has-text-centered">
Une création de
<a href="https://www.gabrielmonette.info" target="blank"
>Gabriel Monette</a
>.
</p>
<script src="index.js"></script>
</body>
</html>