-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="pomodoro">
<a href="#" class="icon icon--bigScreen">
<img class="pomodoro__icon" src="noun_pomodoro.svg" width="50">
</a>
<div id="content">
<div id="pomodoro-modal">
<div class="pomodoro__header">
<img src="img/logo.png" />
</div>
<div id="timer">
<div id="timer__time">
<span id="timer__minutes">25</span>
<span id="timer__colon">:</span>
<span id="timer__seconds">00</span>
<div id="timer__progress-bar"></div>
</div>
</div>
<div id="buttons">
<a href="#" id="pause">
</a>
<a href="#" id="work">
</a>
<a href="#" id="break"></a>
<a href="#" id="reset">
</a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>