-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.21 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- author : anshulbadhani -->
<title>CPS COUNTER</title>
<style>
body{
background: #413f3f;
}
.clickCount{
color: white;
border: 2px solid whitesmoke;
text-align: center;
padding: 10em 0px 12em 0px;
}
.heading{
color: white;
text-align: center;
}
.clicks{
color: white;
text-align: center;
padding-top: 5em;
}
.num{
color: white;
font-weight: 900;
font-size: 5em;
}
</style>
<script src="main.js"></script>
</head>
<body>
<h1 class="heading">CLICK BELOW TO CHECK YOUR CPS</h1>
<div class="clickCount" onmouseup=setClickAndIncreaseCount()>
<div class="clicks">
<span>You have clicked:</span>
<h1 class="num">0</h1>
<span>Times</span>
</div>
</div>
</body>
</html>