-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
24 lines (23 loc) · 846 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
<!-- Coding by Kevinhearts60- | https://twitter.com/kevinhearts60 -->
<!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>Kevinhearts60 JavaScript Stopwatch</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<secti0n>
<div class="wrapper">
<h2>Kevinhearts60 JavaScript Stopwatch</h2>
<p><span id="seconds">00</span>:<span id="tens">00</span></p>
<button id="button-start">Start</button>
<button id="button-stop">Stop</button>
<button id="button-reset">Reset</button>
</div>
<section/>
<script src="script.js" defer></script>
</body>
</html>