File size: 562 Bytes
72b0330
 
 
 
 
3b8d8f5
0e643f7
72b0330
 
 
3b8d8f5
 
 
 
72b0330
 
 
3b8d8f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<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>