-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct_detail.html
More file actions
224 lines (204 loc) · 9.19 KB
/
product_detail.html
File metadata and controls
224 lines (204 loc) · 9.19 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
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" />
<title>E-commerce</title>
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<!-- style.css For Custom Styling -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- <nav class="navbar navbar-expand p-3 shadow-sm"> -->
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top shadow">
<div class="container-fluid px-4 d-flex align-items-center justify-content-between">
<!-- Logo -->
<a class="navbar-brand" href="#">
<img src="assets/images/logos.jpg" alt="Logo" width="120">
</a>
<!-- Center Nav (always visible, no toggler) -->
<ul class="navbar-nav mx-auto flex-row text-center">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="product.html">Product</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category.html">Category</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
<!-- Right Side: Search & Cart -->
<div class="d-flex align-items-center gap-3">
<a href="search.html" class="btn btn-sm btn-outline-primary">Search</a>
<div class="cart-icon">
<a href="cart.html" class="text-primary position-relative">
<i class="fas fa-shopping-cart fa-lg"></i>
<span class="badge bg-primary rounded-pill">24</span>
</a>
</div>
</div>
</div>
</nav>
<!-- ==============product_detail starts here============== -->
<section class="product_detail py-5 my-5" id="product_detail">
<div class="container">
<div class="section_title text-center mb-5">
<h1 class="text-capitalize">Product Detail</h1>
</div>
<div class="row">
<div class="col-md-6">
<div id="carouselExampleIndicators" class="carousel slide shadow rounded" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/product1.jpg" class="carousel-image img-fluid mx-auto d-block" alt="image">
</div>
<div class="carousel-item">
<img src="assets/images/product2.webp" class="carousel-image img-fluid mx-auto d-block" alt="image">
</div>
<div class="carousel-item">
<img src="assets/images/product3.webp" class="carousel-image img-fluid mx-auto d-block" alt="image">
</div>
</div>
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1">
<img src="assets/images/product1.jpg" class="img-fluid rounded product-thumb-img" width="15px" alt="image">
</button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2">
<img src="assets/images/product2.webp" class="img-fluid rounded product-thumb-img" width="15px" alt="image"">
</button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3">
<img src="assets/images/product3.webp" class="img-fluid rounded product-thumb-img" width="15px" alt="image"">
</button>
</div>
</div>
</div>
<div class="col-md-6">
<h3>pink maxies</h3>
<p class="mb-3"><span class="badge bg-secondary">SHIRT</span></p>
<div class="rating d-flex text-warning mb-3">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
<div class="price mb-3">
<h4><b>₹400</b></h4>
</div>
<p class="desc">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum nemo aliquid ipsum dolore amet, nesciunt asperiores sequi mollitia iste recusandae.
</p>
<div class="qty_section mb-3">
<label for="quantity">Quantity:</label>
<input class="quantity text-center ms-2" type="number" id="quantity" name="quantity" value="1" min="1" max="10">
</div>
<a href="cart.html" class="btn btn-primary">Add to Cart</a>
</div>
</div>
<!-- Related Products -->
<section class="related_products py-5 my-5">
<h3 class="mb-4">Related Products</h3>
<div class="row">
<div class="col-md-4 col-6">
<div class="border border-dark rounded shadow text-center p-3">
<img src="assets/images/product1.jpg" class="img-fluid mb-3" alt="image">
<a href="product_detail.html"><h5>Green Dress with details</h5></a>
</div>
</div>
<div class="col-md-4 col-6">
<div class="border border-dark rounded shadow text-center p-3">
<img src="assets/images/product2.webp" class="img-fluid mb-3" alt="image">
<a href="product_detail.html"><h5>Green Dress with details</h5></a>
</div>
</div>
<div class="col-md-4 col-6">
<div class="border border-dark rounded shadow text-center p-3">
<img src="assets/images/product3.webp" class="img-fluid mb-3" alt="image">
<a href="product_detail.html"><h5>Green Dress with details</h5></a>
</div>
</div>
</div>
</section>
</div>
</section>
<!-- ==============product_detail ends here============== -->
<!-- ============== Footer Section Starts Here ============== -->
<section class="footer_section pt-5 pb-2 bg-dark text-light" id="footer_section">
<footer>
<div class="container">
<div class="row g-4">
<!-- Logo & Description -->
<div class="col-md-3 col-12">
<div class="footer_title mb-3">
<a href="index.html">
<img src="assets/images/logos.jpg" width="150px" class="img-fluid mb-2" alt="logo">
</a>
</div>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit illum ipsum quas ad veritatis natus voluptatem.
</p>
</div>
<!-- Quick Links -->
<div class="col-md-3 col-sm-6 col-12">
<div class="footer_title mb-3">
<h5 class="text-uppercase">Quick Links</h5>
</div>
<ul class="list-unstyled footer_links">
<li><a href="about.html" class="text-light text-decoration-none">About</a></li>
<li><a href="#" class="text-light text-decoration-none">Offers & Discounts</a></li>
<li><a href="#" class="text-light text-decoration-none">Get Coupon</a></li>
<li><a href="contact.html" class="text-light text-decoration-none">Contact Us</a></li>
</ul>
</div>
<!-- New Products -->
<div class="col-md-3 col-sm-6 col-12">
<div class="footer_title mb-3">
<h5 class="text-uppercase">New Products</h5>
</div>
<ul class="list-unstyled footer_links">
<li><a href="product.html" class="text-light text-decoration-none">Women's Clothing</a></li>
<li><a href="product.html" class="text-light text-decoration-none">Fashion Accessories</a></li>
<li><a href="#" class="text-light text-decoration-none">Men's Accessories</a></li>
<li><a href="#" class="text-light text-decoration-none">Rubber Toys</a></li>
</ul>
</div>
<!-- Support -->
<div class="col-md-3 col-sm-6 col-12">
<div class="footer_title mb-3">
<h5 class="text-uppercase">Support</h5>
</div>
<ul class="list-unstyled footer_links">
<li><a href="#" class="text-light text-decoration-none">FAQs</a></li>
<li><a href="#" class="text-light text-decoration-none">Terms & Conditions</a></li>
<li><a href="#" class="text-light text-decoration-none">Privacy Policy</a></li>
<li><a href="#" class="text-light text-decoration-none">Report a Payment Issue</a></li>
</ul>
</div>
</div>
<!-- Bottom Footer -->
<div class="border-top border-secondary mt-4 pt-3">
<p class="text-center mb-0 small">© 2025 YourBrand. All rights reserved.</p>
</div>
</div>
</footer>
</section>
<!-- Back to Top Button -->
<div class="backtop position-fixed bottom-0 end-0 m-4">
<a id="button" href="#top" class="btn btn-outline-light rounded-circle shadow">
<i class="fas fa-chevron-up"></i>
</a>
</div>
<!-- ============== Footer Section Ends Here ============== -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>