forked from BensinBosse/progressive-web-app-nr1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.html
33 lines (32 loc) · 1.17 KB
/
timer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="src\icons\icon-192x192.png" />
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/timer.css">
<title>Timer</title>
</head>
<body>
<div id="portrait"><img src="src\rotate.png" alt="Rotate phone"></div>
<div class="body-wrap">
<h1>Set the time you wish to play for!</h1>
<button class="btn" id="increase-btn">▲</button>
<div class="timer-wrap">
<p id="timer-minutes" class="timer-el"></p>
<p id="colon" class="timer-el">:</p>
<p id="timer-seconds" class="timer-el">00</p>
</div>
<button class="btn" id="decrease-btn">▼</button>
</div>
<!--Navigation-->
<div class="nav-buttons">
<button id="prev-btn" class="btn">GO BACK</button>
<button id="next-btn" class="btn">NEXT</button>
</div>
<script src="js/variables.js"></script>
<script src="js/timer.js"></script>
</body>
</html>