-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Counter Application</title>
</head>
<body>
<div class="w-full h-screen bg-gray-200">
<!-- Tittle Section -->
<div>
<h1 class="text-center py-10 text-2xl font-bold text-slate-500">Simple <span class="text-3xl text-orange-400">JS</span> Counter Application</h1>
</div>
<div class="w-[400px] mx-auto flex-col justify-center bg-white rounded drop-shadow py-5">
<!-- Count Section -->
<div class="text-center text-2xl font-semibold text-purple-500 py-4" id="count">
0
</div>
<!-- Button Section -->
<div class="text-center space-x-4">
<button class="text-xl px-4 py-1 bg-blue-500 rounded-full drop-shadow text-white" id="increment">Increment</button>
<button class="text-xl drop-shadow px-4 py-1 bg-pink-500 rounded-full text-white" id="decrement">Decrement</button>
</div>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>