-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</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-[22px] ">Increment and Decrement</div>
<div class="bg-white text-[25px] text-[#344151] flex flex-row rounded-sm gap-12 p-3 px-5">
<!--Negative Button-->
<button class="border-r-2 border-[#bfbfbf] pr-5"
onclick="decrement()">
<i class="fa-solid fa-minus"></i>
</button>
<div class="font-bold" id="counter">
0
</div>
<!--positive Button-->
<button class="border-l-2 border-[#bfbfbf] pl-5"
onclick="increment()">
<i class="fa-solid fa-plus "></i>
</button>
</div>
</div>
<script src="https://kit.fontawesome.com/58a810656e.js" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>