-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pomodoro Timer</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id='page'>
<div class='main'>
<div class='content'>
<p>BREAK LENGTH</p>
<button id='breakMinus'>-</button>
<span class='session-set' id='break'>1</span>
<button id='breakPlus'>+</button>
</div>
<div class='content'>
<p>SESSION LENGTH</p>
<button id='sessionMinus'>-</button>
<span class='session-set' id='session-length'>1</span>
<button id='sessionPlus'>+</button>
</div>
</div>
<div class='main'>
<div id='timeWrap'>
<div id='timer' class='btn'>
<p id='sessionLabel'>Session</p>
<span id='session-timer'>1</span>
</div>
</div>
</div>
<audio>
<source src="https://drive.google.com/uc?id=0B_8tL_zCV-EFQmFkaDZOX1ZxQ0k"></source>
</audio>
</div>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> -->
<script src="script.js" type="text/javascript" charset="utf-8" async defer></script>
</body>
</html>