-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductView.html
198 lines (172 loc) · 8.41 KB
/
productView.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Clothing Store, Clothing Website, HTML, CSS, JavaScript, BOOTSTRAP">
<meta name="author" content="Jyoti Garde">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- syle css -->
<link rel="stylesheet" href="./css/style.css">
<!-- responsive css -->
<link rel="stylesheet" href="./css/responsive.css">
<!-- themify icons -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- cdn links -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Clothing Store</title>
</head>
<body>
<!-- navbar section -->
<section class="header">
<nav class="navbar navbar-expand-lg bg-white fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<img src="./images/logo.jpeg" alt="Clothing Store" class="logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="ti-align-justify navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#products" id="navbarDropdownMenuLink"
role="button" data-bs-toggle="dropdown" aria-expanded="false">
Products
</a>
<ul class="dropdown-menu text-center" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="./women.html">Women's Wear</a></li>
<li><a class="dropdown-item" href="./kids.html">Kid's Wear</a></li>
<li><a class="dropdown-item" href="./men.html">Men's Wear</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
</ul>
<ul class="navbar-nav ms-auto">
<li class="search-bar">
<form class="d-flex search-bar">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-dark" type="submit"><i class="fas fa-search"></i></button>
</form>
</li>
<li class="nav-item">
<a class="nav-link" href="./cart.html"><i class="fas fa-shopping-cart"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./login.html"><i class="fas fa-user"></i></a>
</li>
</ul>
</div>
</div>
</nav>
</section>
<section class="productView container my-5 pt-5">
<div class="">
<div class="row mt-5">
<div class="col-lg-5 col-md-12 col-12">
<div class="product-image position-relative">
<img src="./images/wp1.jpg" alt="product" class="img-fluid d-block mx-auto mb-4">
</div>
</div>
<div class="col-lg-6 col-md-12 col-12">
<h2>Casual Dress</h2>
<hr>
<p class="mb-2 fs-4 text-danger">$200 </p>
<div class="d-block my-3">
<label for="size">Select Size: </label>
<select name="size" id="size">
<option value="S">S</option>
<option value="M">M</option>
<option value="XL">XL</option>
<option value="XXL">XXL</option>
</select>
</div>
<div class="mb-3">
<input type="number" value="1">
<a href="cart.html" class="btn btn-danger text-uppercase">Add to Bag</a>
</div>
<div>
<p>100% Original Products <br>
Pay on delivery might be available <br>
Easy 30 days returns and exchanges <br>
Try & Buy might be available</p>
</div>
<h4 class="mt-4">Product Details</h4>
<span>Color: White and
Ethnic motifs embroidered regular sleeves <br> Knitted and woven regular cotton</span></span>
</div>
</div>
</div>
</section>
<!-- footer section -->
<footer class="footer-section bg-dark text-light text-center">
<div class="container py-5">
<div class="row">
<div class="col-md-4 footer-col">
<div class="footer-contact">
<h2>Links</h2>
<div class="contact-link-box">
<a href="./index.html">Home</a>
<a href="./contact.html">Contact</a>
</div>
</div>
</div>
<div class="col-md-4 footer-col">
<div class="footer_detail">
<a href="./index.html" class="footer-logo">
<h2>Clothing Store</h2>
</a>
<p class="lead fs-6">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Possimus quod eligendi
reprehenderit commodi, harum itaque.
</p>
</div>
</div>
<div class="col-md-4 footer-col">
<h2>Follow Us</h2>
<div class="footer-social">
<a href="#">
<i class="fab fa-facebook fs-4"></i>
</a>
<a href="#">
<i class="fab fa-twitter fs-4"></i>
</a>
<a href="#">
<i class="fab fa-linkedin-in fs-4"></i>
</a>
<a href="#">
<i class="fab fa-instagram fs-4"></i>
</a>
<a href="#">
<i class="fab fa-pinterest fs-4"></i>
</a>
</div>
<a href="#" class="text-light fs-6">
<i class="fas fa-envelope mx-2"></i>
<span>[email protected]</span>
</a>
</div>
</div>
<div class="footer-info">
<p>© Copyright 2022 Clothing Store | Designed with <i class="fas fa-heart text-danger"></i> by
Jyoti Garde</p>
</div>
</div>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>