-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
40 lines (33 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>It's the FINAL COUNTDOWN!</title>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<h1>The Official hackerYou Full-Time Bootcamp Break Timer</h1>
<div class="buttons clearfix">
<div class="clearClock">Clear The Clock</div>
<div class="fifteen">15 Min Break</div>
<div class="lunchBreak">Lunch Break</div>
<div class = "afternoonBreak">Afternoon Break</div>
<div class="mirrorClock">Flip Clock</div>
</div>
<label for="minutes"></label>
<input placeholder="Enter Your Countdown # in Minutes" type="text" name="minutes" class="minutesGiven" size="4">
<div class="countdown">
<span class="seconds"></span>
<!-- <input type="number" name="seconds"> -->
</div>
</div>
<div class="toEndOfDay">
<span></span>
</div>
<!-- Load in jQuery and our own javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="scripts2.js"></script>
</body>
</html>