-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (22 loc) · 1011 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
<html>
<head>
<link rel="stylesheet" href="./style.css">
<!--CSS Only-->
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 text-center">
<h1>Javascript Counter</h1>
<h1 id="number">0</h1>
<button class="btn btn-success" onclick="increment()">INCREMENT</button>
<button class="btn btn-danger" onclick="decrement()">DECREMENT</button>
<button class="btn btn-primary" onclick="neutral()">NEUTRAL</button>
</div>
</div>
</div>
</body>
</html>
<script src="./index.js"></script>