-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.21 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="letf">
<p>Home</p>
</div>
<div class="center">
<h2>Counter</h2>
</div>
<div class="right">
<p>Logo</p>
</div>
</div>
<hr>
<div class="couterBody">
<div class="counterDisplay">
<h1>0</h1>
</div>
<div class="btns">
<button class="-" onclick="decrement()">-</button>
<button class="+" onclick="increment()">+</button>
</div>
<div class="range">
<p>Increment/Decrement by:<input id="range" type="number" value="1" onchange="rangeVal()"> </p>
</div>
<div class="reset">
<button class="reset" onclick="reset()">Reset</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>