-
Notifications
You must be signed in to change notification settings - Fork 0
/
MouseClick.html
37 lines (35 loc) · 909 Bytes
/
MouseClick.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Click Speed Recorder</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
}
#clickButton {
padding: 15px 30px;
font-size: 18px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
#clickSpeed {
margin-top: 20px;
font-size: 24px;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Click Speed Test</h1>
<button id="clickButton">Click Me!</button>
<div id="clickSpeed">Clicks per second: 0</div>
<script src="MouseClick.js"></script>
</body>
</html>