-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
33 lines (29 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Platter</title>
<link rel="stylesheet" href="assets/css/fonts.css">
<link rel="stylesheet" href="assets/css/tailwind.config.css">
</head>
<body class="bg-white">
<div class="md:p-32 p-8">
<div class="flex flex-col md:flex-row justify-between items-center md:mb-9 mb-6">
<h1 class="text-[#231F20] md:text-[40px] md:leading-[48px] md:tracking-[-0.4px] text-[28px] leading-[35.28px] tracking-[-0.28px] text-center md:text-left source-serif">Best Sellers</h1>
<a href="#" class="hidden md:inline-block poppins-600 text-[14px] text-[#5C553A] leading-[19.6px] tracking-[0.42px] px-4 py-2 rounded hover:underline">
Shop All Best Sellers →
</a>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 md:gap-[24px] gap-[11px] md:w-full md:flex scrollbar-custom overflow-x-auto" id="product-grid">
</div>
<div class="text-center mt-3">
<button id="show-more" class="w-full block sm:hidden px-6 py-4 bg-black text-white rounded-full hover:bg-gray-800 text-base poppins-600">
Show More
</button>
</div>
</div>
</body>
<script src="https://cdn.tailwindcss.com"></script>
<script src="assets/js/script.js"></script>
</html>