-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.27 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>
<!-- Design by foolishdeveloper.com -->
<html lang="en">
<head>
<title>Stopwatch</title>
<!--Google Font-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto+Mono:wght@700&display=swap" rel="stylesheet">
<!--Stylesheet-->
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src='js/tracking-min.js'></script>
</head>
<body>
<div class="container">
<div class="timer-container">
<div class="timerDisplay">00 : 00 : 000</div>
<div class="buttons">
<button id="pauseTimer">Pause</button>
<button id="startTimer">Start</button>
<button id="resetTimer">Reset</button>
</div>
<div class="results-container">
<h1 class="results-header">RESULTS</h1>
<ol id="resultsList">
</ol>
</div>
</div>>
<video autoplay="true" id="videoElement"></video>
</div>
<script src='js/tracking-min.js'></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>