-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
224 lines (210 loc) · 8.24 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shukla Store</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Navbar Section -->
<header class="section-navbar">
<div class="container">
<img src="./public/logo.png" alt="Shukla Store Logo">
<nav class="navbar">
<ul>
<li><a class="active" onclick="window.location.href='index.html#';">Home</a></li>
<li><a class="shop" onclick="window.location.href='shop.html';">Shop</a></li>
<li><a class="about" onclick="window.location.href='about.html#';">About</a></li>
<li><a class="product" onclick="window.location.href='shop1.html';">Products</a></li>
<li><a class="contact" onclick="window.location.href='contact.html';">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Search Bar Section -->
<section class="search-container">
<input type="text" id="searchInput" placeholder="Search news...">
<button id="searchButton"><i class="fas fa-search"></i></button>
</section>
<!-- Hero Section -->
<main>
<div class="section-hero">
<div class="container grid grid-two--cols">
<div>
<p class="hero-subheading">WELCOME TO SHUKLA STORE</p>
<h1 class="hero-heading">Discover Quality, Style, and Savings at Shukla Store</h1>
<p class="hero-para">Your One-Stop Shop for Trendy Products, Unbeatable Prices, and Exclusive Offers</p>
</div>
<div>
<img src="./public/hero-section-banner.jpg" alt="Hero Image">
</div>
</div>
</div>
<div class="custom-shape-divider-bottom-1696038172">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M1200 0L0 0 892 114 1200 0z" class="shape-fill"></path>
</svg>
</div>
</main>
<!-- Diwali Sale Offer Section -->
<section class="section-extra-product">
<div class="container center-content">
<h2>Diwali Sale Offer</h2>
<div class="div-extra">
<div class="extra-item">
<img src="./public/bluetooth.webp" alt="Offer 1" class="offer-image">
<p>Special Diwali Offer on Electronics</p>
<button class="add-to-cart" href="singleproduct.html">Shop Now</button>
</div>
<div class="extra-item">
<img src="./public/clothesfashion.jpg" alt="Offer 2" class="offer-image">
<p>50% Off on Fashion Items</p>
<button class="add-to-cart" href="singleproduct.html">Shop Now</button>
</div>
<div class="extra-item">
<img src="./public/bags.png" alt="Offer 3" class="offer-image">
<p>Exclusive Deals on Home Appliances</p>
<button class="add-to-cart" href="singleproduct.html">Shop Now</button>
</div>
</div>
</div>
</section>
<!-- Why Choose Shukla Store Section -->
<section class="section-why-choose">
<div class="container">
<h2>Why Choose Shukla Store?</h2>
<div class="why-choose-content">
<div class="why-choose-item">
<img src="./public/quality.png" alt="Quality Products">
<h3>Quality Products</h3>
<p>We offer a wide range of high-quality products that meet your expectations and needs.</p>
</div>
<div class="why-choose-item">
<img src="./public/savings.png" alt="Affordable Prices">
<h3>Affordable Prices</h3>
<p>Get the best value for your money with our unbeatable prices and deals.</p>
</div>
<div class="why-choose-item">
<img src="./public/support.png" alt="Customer Support">
<h3>24/7 Customer Support</h3>
<p>We are always here to assist you with any inquiries or issues you may have.</p>
</div>
</div>
</div>
</section>
<!-- Template Section -->
<section class="template-section">
<div class="template-item">
<img src="./public/ipad.jpeg" alt="Product 1" class="product-image">
<h3>Product 1</h3>
<p>Special Offer: $29.99</p>
<div class="quantity-control">
<button class="decrement">-</button>
<span class="quantity">0</span>
<button class="increment">+</button>
</div>
<a href="#" class="shop-now-btn">Shop Now</a>
</div>
<div class="template-item">
<img src="./public/mobileforsale.png" alt="Product 2" class="product-image">
<h3>Product 2</h3>
<p>Special Offer: $39.99</p>
<div class="quantity-control">
<button class="decrement">-</button>
<span class="quantity">0</span>
<button class="increment">+</button>
</div>
<a href="#" class="shop-now-btn">Shop Now</a>
</div>
<div class="template-item">
<img src="./public/bag.jpg" alt="Product 3" class="product-image">
<h3>Product 3</h3>
<p>Special Offer: $49.99</p>
<div class="quantity-control">
<button class="decrement">-</button>
<span class="quantity">0</span>
<button class="increment">+</button>
</div>
<a href="#" class="shop-now-btn">Shop Now</a>
</div>
<div class="template-item">
<img src="./public/image.png" alt="Product 4" class="product-image">
<h3>Product 4</h3>
<p>Special Offer: $59.99</p>
<div class="quantity-control">
<button class="decrement">-</button>
<span class="quantity">0</span>
<button class="increment">+</button>
</div>
<a href="#" class="shop-now-btn">Shop Now</a>
</div>
</section>
<!-- Sponsor Section -->
<section class="sponsor-section">
<div class="sponsor-container">
<div class="container">
<h3>Crazy Deals</h3>
<h2>Buy 1 Get 1 Free</h2>
<span>The best classic dress is on sale at Shukla Store</span>
<button class="white" href="shuklaproduct.html">CLICK</button>
<img src="./public/shopping-banner.jpg" alt="Sponsor Image" class="sponsor-image">
</div>
<div class="container">
<h3>Crazy Deals</h3>
<h2>Buy 1 Get 1 Free</h2>
<span>The best classic dress is on sale at Shukla Store</span>
<button class="white" href="shuklaproduct.html">CLICK</button>
<img src="./public/shopping-banner-1.jpg" alt="Sponsor Image" class="sponsor-image">
</div>
</div>
</section>
<!-- Banner Section -->
<div class="banner-container">
<section id="banner2">
<div class="banner-box banner-box2">
<h4>SUMMER COLLECTION</h4>
<h2>Upcoming Seasons</h2>
<span>The best classic dress is on sale at Shukla Store</span>
<button class="white" href="SUMMERC.html">CLICK</button>
<img src="./public/sesonal-shopping.avif" alt="Seasonal Shopping" class="banner-img">
</div>
</section>
<section id="banner3">
<div class="banner-box">
<h2>SEASONAL SALE</h2>
<h3>Winter Collection 50% OFF</h3>
<button class="white" href="SUMMERC.html">COLLECTION</button>
<img src="./public/winter-season.avif" alt="Winter Collection" class="banner-img">
</div>
</section>
</div>
<!-- Footer Section -->
<footer>
<div class="footer-policy">
<div class="container policy-section">
<div class="policy-left">
<p><i class="fas fa-shipping-fast"></i> Free Shipping</p>
</div>
<div class="policy-right">
<p><i class="fas fa-undo"></i> Easy Returns</p>
</div>
</div>
</div>
<div class="footer-content">
<div class="container">
<h2>Shukla Store</h2>
<p>© 2024 Shukla Store. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Include FontAwesome for social icons -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/js/all.min.js"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Include your main JavaScript file -->
<script src="main.js"></script>
<script src="js/cart.js" defer></script>
</body>
</html>