-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
47 lines (39 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../../global//reset.css" />
<link rel="stylesheet" href="../../global/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Inconsolata"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Countdown Timer</title>
<link rel="shortcut icon" href="images/icon.svg" type="image/x-icon" />
</head>
<body>
<a class="back-home" href="../../index.html">Back to Home</a>
<div class="wrapper">
<div class="timer">
<div class="timer__controls">
<button data-time="20" class="timer__button">20 Secs</button>
<button data-time="300" class="timer__button">Work 5</button>
<button data-time="900" class="timer__button">Quick 15</button>
<button data-time="1200" class="timer__button">Snack 20</button>
<button data-time="3600" class="timer__button">Lunch Break</button>
<form name="customForm" id="custom">
<input type="text" name="minutes" placeholder="Enter Minutes" />
</form>
</div>
<div class="display">
<h1 class="display__time-left"></h1>
<p class="display__end-time"></p>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>