-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathb_home.php
More file actions
36 lines (36 loc) · 1.54 KB
/
b_home.php
File metadata and controls
36 lines (36 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css">
<link rel="icon" href="">
<link rel="stylesheet" href="home.css">
</head>
<body>
<div class="explore">
<h1 style="text-align: center;">Product Category</h1>
<div class="explore-cards">
<div class="card">
<img src="Assets/Thumbnails/Women.jpg" alt=":" height="380px" width="380px">
<h5>Women's Fashion</h5>
<a href="women_product.php" target="_blank">Sell Here</a>
</div>
<div class="card">
<img src="Assets/Thumbnails/Men.jpg" alt=":" height="380px" width="380px">
<h5>Men's Fashion</h5>
<a href="men_product.php" target="_blank">Sell Here</a>
</div>
<div class="card">
<img src="Assets/Thumbnails/Couple.jpg" alt=":" height="380px" width="380px">
<h5>Partners in Fashion</h5>
<a href="partner_product.php" target="_blank">Sell Here</a>
</div>
</div>
</div>
</body>
</html>