-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<title>Timer Sequence</title>
<link href="js/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/main.css" rel="stylesheet" media="screen">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/bootstrap/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<h1>Timer Sequence</h1>
<p>A simple website that helps you set a sequence of pre-established timers.</p>
<div class="timer">
<h2 class="timerDisplay">0.0</h2>
<button id="startStopButton" class="btn timerButton">
Start
</button>
<button id="resetButton" class="btn timerButton">
Reset
</button>
</div>
<div class="sequenceControls">
<button id="prevTimerButton" class="btn sequenceControlButton">
Previous Timer
</button>
<button id="nextTimerButton" class="btn sequenceControlButton">
Next Timer
</button>
</div>
</div>
</body>
</html>