-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1 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
<!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">
<title>Stopwatch</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="https://img.icons8.com/fluency/512/timer.png">
</head>
<body class="container">
<div class="page__title">Stopwatch</div>
<p class="timer">
<span id="hours" class="timer__elem">00</span> :
<span id="minutes" class="timer__elem">00</span> :
<span id="seconds" class="timer__elem">00</span> :
<span id="tens" class="timer__elem">00</span>
</p>
<div class="timer__controls">
<button id="button-start" class="btn btn-primary">Start</button>
<button id="button-stop" class="btn btn-danger">Stop</button>
<button id="button-reset" class="btn btn-warning">Reset</button>
</div>
<script src="stopwatch.js"></script>
</body>
</html>