forked from FAC10/week2-FA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (23 loc) · 927 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/threefourtwotwo" type="text/css"/>
<title>Stopwatch</title>
</head>
<body>
<section class="stopwatch">
<button id="start" class="stopwatch__button">start</button>
<button id="stop" class="stopwatch__button">stop</button>
<button id="reset" class="stopwatch__button">reset</button>
<button id="lap" class="stopwatch__button">lap</button>
<section id="hourdisplay" class="stopwatch__hours"></section>
<section id="display" class="stopwatch__display">00:00.00</section>
<section id="lapcontainer"></section>
</section>
<script src="./js/script.js"></script>
</body>
</html>