-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 870 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ClickCount</title>
<style>
body {
height: 100%;
margin: 20%;
display: flex;
justify-content: center;
align-items: center;
}
.centralizar {
border: 2px solid green;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<!-- -->
<!-- -->
<div class="centralizar">
<h1>Contador de Cliques</h1>
<button id="clickButton">Clique aqui para adicionar!</button>
<button id="clickButton1">Clique aqui para remover!</button>
<p>Cliques: <span id="clickCount">0</span></p>
</div>
<script src="./script.js"></script>
</body>
</html>