-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcounter.html
24 lines (23 loc) · 1.02 KB
/
counter.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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<title>test</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main>
<div class='container'>
<h1>COUNTER</h1>
<span id='value'>0</span>
<div class="btn_container">
<button onclick="myFunction3()" id="danger" type="button" class="btn btn-outline-danger">Decrese</button>
<button onclick="myFunction2()" id="dark" type="button" class="btn btn-outline-dark">Reset</button>
<button onclick="myFunction()" id="success" type="button" class="btn btn-outline-success">Increse</button>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src='app.js'></script>
</body>
</html>