-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 942 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Document</title>
<!-- CSS -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="contnr" class="container">
<h1>JavaScript Counter App</h1>
<div id="contener">
<div class="counter_container">
<div>
<button id="substractBtn">-</button>
</div>
<div id="counter_area">
<h2 class="counter_display" id="counterValue">0</h2>
</div>
<div>
<button id="addBtn">+</button>
</div>
</div>
<div id="form_container">
<input type="number" />
<button id="rest" type="button" onclick="resetForm()">Reset</button>
<button id="st">Set</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>