-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (74 loc) · 3.59 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewreport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grocery Shop</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="Responsive Landing Page.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div id="main">
<div id="nav">
<div id="nav-prt1">
<img src="cart.webp" alt="image">
<a href=""><h4>Home</h4></a>
<a href=""><h4>Shop</h4></a>
<a href=""><h4>My Orders</h4></a>
<a href=""><h4>Help</h4></a>
<i class="ri-user-line"></i>
<i class="ri-menu-2-line"></i>
<i class="ri-shopping-cart-2-fill"></i>
</div>
</div>
<div id="content">
<div id="left">
<h1>Grocery Shop</h1>
<h3>Welcome to Grocessory - Your Ultimate Destination for Hassle-Free Grocery Shopping!</h3>
<br>
<p>At Grocery, we understand the importance of convenience and quality when it comes to shopping for your everyday essentials. Our website offers a seamless and enjoyable shopping experience, allowing you to browse through a diverse range of products and make your purchases with just a few clicks. <br>
From farm-fresh vegetables to dairy delights and everything in between, we've curated a selection of high-quality groceries to cater to your needs. Whether you're stocking up your pantry, preparing for a special occasion, or simply replenishing your household supplies, Grocessory has got you covered.
</p>
<button >Shop Now</button>
</div>
<div id="right">
<div class="elem">
<img src="vegetables.webp" alt="">
<a href="#section1"><h4>Vegetables</h4></a>
</div>
<div class="elem">
<img src="afaqs_2020-12_e1e83a5e-234e-42b9-a526-240494902089_Amul_product_partner.avif" alt="">
<a href="#section2"><h4>Dairy Products</h4></a>
</div>
<div class="elem">
<img src="stationery-items-425.jpg" alt="">
<a href="#section3"><h4>Stationary</h4></a>
</div>
<div class="elem">
<img src="cosmetics-turquoise-bg.jpg" alt="">
<a href="#section4"><h4>Cosmetics</h4></a>
</div>
</div>
</div>
</div>
<footer>
<div class="footercontainer">
<div class="socialIcons">
<a href=""><i class="fa-brands fa-facebook" ></i></a>
<a href=""><i class="fa-brands fa-instagram" ></i></a>
<a href=""><i class="fa-brands fa-twitter" ></i></a>
<a href=""><i class="fa-brands fa-youtube" ></i></a>
</div>
</div>
<div class="footerBottom">
<p>Designed by Mubina</p>
</div>
</footer>
<script src="Responsive Landing Page.js"></script>
</body>
</html>