-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
28 lines (26 loc) · 1.24 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
<!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">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<main class="d-flex flex-column justify-content-center w-100 bg-dark">
<div class="text-light flex-column align-items-center flex-column justify-content-center">
<h4 class="fs-1 text-center">People enetered:</h4>
<h1 class="text-center" id="entered">0</h1>
<h1 class="mt-2 fs-1 text-center" id="saved">Previous entries: </h4>
</div>
<div class="text-light d-flex align-items-center justify-content-center mt-5">
<button class="btn m-2 btn-lg btn-outline-primary" onclick="increment()">Increase</button>
<button class="btn m-2 btn-lg btn-outline-success" onclick="save()">Save</button>
</div>
</main>
<script src="index.js"></script>
</body>
</html>