Update index.html
Browse files- index.html +20 -19
index.html
CHANGED
@@ -1,19 +1,20 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Clicks Per Second Test</title>
|
7 |
+
<link rel="stylesheet" href="style.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div class="container">
|
11 |
+
<h1>Clicks Per Second Test</h1>
|
12 |
+
<div class="timer"></div>
|
13 |
+
<button class="start-button" id="start-button">Start</button>
|
14 |
+
<div class="click-counter"></div>
|
15 |
+
<div class="cps-display"></div>
|
16 |
+
</div>
|
17 |
+
|
18 |
+
<script src="script.js"></script>
|
19 |
+
</body>
|
20 |
+
</html>
|