-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 975 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 975 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Counter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="header">
<div class="title">
<h1>No Of People: </h1>
</div>
</section>
<section class="main">
<div class="count">
<h2 id="count-no">0</h2>
</div>
<button class="increase-btn" onclick="increase()">Increase</button>
<div><button id="save-btn" onclick="save()" >Save</button></div>
<div>
<p id="save-el">Previous entries: </p>
</div>
</section>
<!-- <section class="welcome">
<div>
<h1 id="welcome-el"></h1>
</div>
<div>
<button class="wel-btn" onclick="wel()">WELCOME</button>
</div>
</section> -->
<script src="index.js"></script>
</body>
</html>