| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Click Per Second Tracker</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>Click Per Second Tracker</h1> | |
| <div id="timer" class="timer">15</div> | |
| <button id="clickButton" class="start-button">Start</button> | |
| <div id="cpsDisplay" class="cps-display">CPS: 0.00</div> | |
| </div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |