-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (28 loc) · 863 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="stye.css">
<title>Number Counter</title>
</head>
<body>
<main>
<div class="container">
<h1>COUNTER</h1>
</div>
<span id="value">0</span>
<div class="button-container">
<button class="btn decrease">Decrease</button>
<button class="btn reset">reset</button>
<button class="btn increase ">Increase</button>
</div>
</main>
</div>
<script src="app.js"></script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
</body>
</html>