-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.72 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.72 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css " href="index.css">
<link href="https://fonts.googleapis.com/css?family=Bubbler+One|Rock+Salt|Sunshiney" rel="stylesheet">
<meta charset="utf-8">
<title>Pomodoro JS</title>
</head>
<body>
<h1>Pomodoro JS</h1>
<header>
<div class="container">
<div id="sessionlength-container">
<p>Work Length</p>
<button class="toggle-timer" type="button" id="decreaseWork" onclick="decreaseWork()">-</button>
<time id="Work-length">25</time>
<button class="toggle-timer" type="button" id="increaseWork" onclick="increaseWork()">+</button>
</div>
<button type="button" id="startTimer" onclick="workTimer()">Start</button>
<button type="button" id="pauseTimer" onclick="pauseTimer()">Pause</button>
<button type="button" id="stopTimer" onclick="stopTimer()">Stop</button>
<div id="breaklength-container">
<p>Break Length</p>
<button class="toggle-timer" type="button" id="decreaseBreak" onclick="decreaseBreak()">-</button>
<time id="break-length">5</time>
<button class="toggle-timer" type="button" id="increaseBreak" onclick="increaseBreak()">+</button>
</div>
</div>
</header>
<div id="containerTimer">
<div class="timer">
<div class="time">
<span id="minutes">25</span>
<span id="colon">:</span>
<span id="seconds">00</span>
</div>
</div>
</div>
<footer>
<h2>BF Dev freeCodeCamp</h2>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="index.js" type="text/javascript"></script>
</body>