-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcounter.html
More file actions
46 lines (46 loc) · 1.06 KB
/
Copy pathcounter.html
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
h1{
position: fixed;
top: 30%;
left: 40%;
text-align: center;
}
div{
display: grid;
place-items: center;
place-content: center;
border: 2px solid black;
border-radius: 2px;
gap: 2px;
padding-bottom: 4px;
width:200px;
}
button{
background-color:lightgrey;
color:black;
font-size: large;
}
body{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
}
</style>
</head>
<body>
<h1 class="x">counter</h1>
<div id="2">
<p >You have Clicked 0 times</p>
<button id="2">click</button>
</div>
</body>
<script src="counter.js"></script>
</html>