Update index.html
Browse files- index.html +8 -9
index.html
CHANGED
@@ -3,18 +3,17 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>
|
7 |
-
<link rel="stylesheet" href="
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
-
<h1>
|
12 |
-
<div
|
13 |
-
<button
|
14 |
-
<div
|
15 |
-
<div
|
16 |
</div>
|
17 |
-
|
18 |
<script src="script.js"></script>
|
19 |
</body>
|
20 |
-
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Click Per Second Tracker</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="container">
|
11 |
+
<h1>Click Per Second Tracker</h1>
|
12 |
+
<div id="timer" class="timer">15</div>
|
13 |
+
<button id="clickButton" class="start-button">Start</button>
|
14 |
+
<div id="clickCounter" class="click-counter">0</div>
|
15 |
+
<div id="cpsDisplay" class="cps-display">CPS: 0.00</div>
|
16 |
</div>
|
|
|
17 |
<script src="script.js"></script>
|
18 |
</body>
|
19 |
+
</html>
|