Sergidev commited on
Commit
3b8d8f5
·
verified ·
1 Parent(s): 099bdb6

Update index.html

Browse files
Files changed (1) hide show
  1. 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>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" id="timer">15:00</div>
13
- <button class="start-button" id="start-button">Start</button>
14
- <div class="click-counter" id="click-counter">0</div>
15
- <div class="cps-display" id="cps-display">Clicks Per Second: 0</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>