-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathindex.html
70 lines (61 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Javascripts Unique Projects</title>
<link
rel="icon"
type="image/x-icon"
href="https://cdn-icons-png.flaticon.com/512/1087/1087815.png"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body class="p-10">
<h1 class="text-3xl text-center pt-5 py-10 text-black font-semibold">
Javascripts unique Projects
</h1>
<!--Search bar-->
<div class="search text-center">
<input
type="search"
class="input"
id="search-input"
placeholder="Search..."
/>
</div>
<div class="text-xl my-4">
<button class="bg-cyan-400 hover:bg-cyan-600 p-2 rounded-md projectsbtn">
PROJECTS
</button>
<button class="bg-cyan-400 hover:bg-cyan-600 p-2 rounded-md gamesbtn">
GAMES
</button>
<button class="bg-cyan-400 hover:bg-cyan-600 p-2 rounded-md allbtn">
ALL
</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
<!-- Project Cards will go here -->
</div>
<!-- Pagination Controls -->
<div class="flex justify-center mt-6 gap-5">
<button
class="bg-blue-500 hover:bg-blue-700 text-white font-semibold py-2 px-4 rounded prev"
>
Previous
</button>
<!-- Add a container for page buttons -->
<div class="flex">
<!-- Add page buttons dynamically using JavaScript -->
</div>
<button
class="bg-blue-500 hover:bg-blue-700 text-white font-semibold py-2 px-4 rounded next"
>
Next
</button>
</div>
</body>
<script src="script.js" type="module"></script>
</html>