-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·61 lines (50 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pomodoro Timer</title>
<link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<audio src="lib/sound/alarm.wav"></audio>
<div id="flex-container-top">
<div class="title">
Pomodoro Timer | Stay Focused
</div>
<div class="notification">
<i class="fas fa-bell"></i>
</div>
</div>
<div id="flex-container-middle">
<span class="focus">Focus</span>
<input type="text" class="form-control" aria-label="Focus Time">
<span class="min">min</span>
<div class="timerStatus work">
<span id="workDisplay">25:00</span>
</div>
<div class="timerStatus break hidden">
<span id="breakDisplay">05:00</span>
</div>
<span class="break-input">Break</span>
<input type="text" class="form-control" aria-label="Break">
<span class="min">min</span>
</div>
<div id="flex-container-bottom">
<div class="p2 reset">
<div>Reset</div>
<i id="reset" class="fas fa-sync-alt"></i>
</div>
<div class="p2 start">
<div>Start</div>
<i id="start" class="fas fa-play"></i>
</div>
<div class="p2 stop">
<div>Stop</div>
<i id="stop" class="fas fa-stop"></i>
</div>
</div>
<script type="text/javascript" src = "lib/script/script.js"></script>
</body>
</html>