-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.27 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
<!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">
<title>Passenger Counter Haryana Roadways</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Marathi&family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="bg-image"></div>
<div class="container flow">
<h1>Passenger Counter</h1>
<h2>People Entered</h2>
<h2 id="count">0</h2>
<div>
<button class="button-1" id="increment-btn">+</button>
<button class="button-1" id="decrement-btn">-</button>
</div>
<div>
<button class="button-2" id="save-btn">Save</button>
<button class="button-2" id="reset-btn">Reset</button>
</div>
<p id="save-el">Previous Enteries: </p>
<p>Total Passenger: <span id="total-el">0</span> </p>
</div>
<script src="./index.js"></script>
</body>
</html>