-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.22 KB
/
index.html
File metadata and controls
41 lines (37 loc) · 1.22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Counter</title>
</head>
<body>
<!-- </wrapper> -->
<div
class="w-[100vw] h-[100vh] flex flex-col justify-center items-center bg-[#344151] gap-10"
>
<div class="text-[#0398d4] font-medium text-[20px]">
Increment And Decrement
</div>
<div
class="bg-white flex text-[25px] text-[#344151] rounded-sm gap-12 p-3 px-5"
>
<button onclick="decrement()" class="border-r-2 border[#bfbfbf] pr-5">
<!-- -- wala button -->
<i class="fa-solid fa-minus"></i>
</button>
<div id="counter" class="font-bold">
<!-- text jo update hoga -->
0
</div>
<button onclick="increment()" class="border-l-2 border[#bfbfbf] pl-5">
<!-- ++ wal button -->
<i class="fa-solid fa-plus"></i>
</button>
</div>
</div>
<script src="https://kit.fontawesome.com/58a810656e.js"></script>
<script src="script.js"></script>
</body>
</html>