-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomodoro timer JS</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:300,500,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="sound"></div>
<div class="container">
<div class="timer">
<h1 class="timer__welcome-message">Pomodoro timer</h1>
<div class="timer__clock">
<p class="timer__time">25:00</p>
<div class="timer__buttons">
<button class="timer__start">Start</button>
<button class="timer__stop">Stop</button>
<button class="timer__reset">Reset</button>
</div>
<div class="options">
<button class="options__work">Work (25mins)</button>
<button class="options__break">Break (5mins)</button></div>
</div>
</div>
<p class="currently">Current mode: <span class="currently__mode">-</span></p>
<p class="description">You should study for 25 minutes and then take a short 5-minute break. And so on and on.</p>
</div>
<div class="modal hidden">
<p>🎉 Congratulations! Pomodoro timer will help you learn effectively. 🍅</p>
</div>
<script src="js/scripts.js"></script>
</body>
</html>