-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) 路 846 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (26 loc) 路 846 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Counter App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>馃敘 Counter App</h1>
<div class="counter-display">
<span id="counter">0</span>
</div>
<div class="buttons">
<button id="decreaseBtn" class="btn btn-red">-</button>
<button id="resetBtn" class="btn btn-gray">Reset</button>
<button id="increaseBtn" class="btn btn-green">+</button>
</div>
<div class="info">
<p>Click the buttons to change the counter!</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>