-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
209 lines (190 loc) · 10.8 KB
/
search.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--style.css-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--Bootstrap classes-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-social/5.1.1/bootstrap-social.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css">
<title>E-Commerce</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg- fixed-top" style="background-color: #e0ece4;">
<a class="navbar-brand" href="#"><img src="./assets/image/download.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto ">
<li class="nav-item ">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item ">
<a class="nav-link" href="product.html">Product</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
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>
<div class="search mr-3">
<a href="search.html"></a><button class="btn btn-sm btn-outline-primary">Search</button></a>
</div>
<div class="cart">
<a href="cart.html">
<i class="fa fa-shopping-cart fa-2x"></i>
<span class="badge badge-pill badge-primary">24</span>
</a>
</div>
</div>
</nav>
<section class="search_section py-5 my-5" id="search_section">
<div class="container">
<div class="title text-center mb-5">
<h2><i class="far fa-file mr-2"></i>Search</h2>
</div>
<div class="row">
<div class="col-md-10 mx-auto">
<div class="input-group">
<input type="text" class="form-control" value="xyz">
<span class="input-group-btn">
<button class="btn btn-primary" type="button"><i class="fa fa-search"></i></button>
</span>
</div>
<small>Showing all results matching "xyz"</small>
<div class="table-responsive mt-3">
<table class="table table-hover">
<tbody class="border-bottom">
<tr>
<td class="number text-center">1</td>
<td class="image"><img src="assets/image/mens wear.jpg" width="100px" class="img img-fluid" alt=""></td>
<td class="product"><strong>Blue Shirt</strong><br>This is the product description.</td>
<td class="rate text-right"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i></span></td>
<td class="price text-right">₹499</td>
</tr>
<tr>
<td class="number text-center">2</td>
<td class="image"><img src="assets/image/white-t-shirt-mockup-template_185216-156.jpg" width="100px" class="img img-fluid" alt=""></td>
<td class="product"><strong>White T-shirt</strong><br>This is the product description </td>
<td class="rate text-right"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i></span></td>
<td class="price text-right">₹399</td>
</tr>
<tr>
<td class="number text-center">3</td>
<td class="image"><img src="assets/image/skinny-woman-body-with-loose-pants-jeans_93267-892.jpg" width="100px" class="img img-fluid" alt=""></td>
<td class="product"><strong>Womens Blue Jeans</strong><br>This is the product description.</td>
<td class="rate text-right"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i></span></td>
<td class="price text-right">₹599</td>
</tr>
<tr>
<td class="number text-center">3</td>
<td class="image"><img src="assets/image/womens wear.jpg" width="100px" class="img img-fluid" alt=""></td>
<td class="product"><strong>Womens Black-Shirt</strong><br>This is the product description.</td>
<td class="rate text-right"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i></span></td>
<td class="price text-right">₹499</td>
</tr>
<tr>
<td class="number text-center">3</td>
<td class="image"><img src="assets/image/fashion-set_1203-7559.jpg" width="100px" class="img img-fluid" alt=""></td>
<td class="product"><strong>Accessories</strong><br>This is the product description.</td>
<td class="rate text-right"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i></span></td>
<td class="price text-right">₹350</td>
</tr>
<tr>
<td class="number text-center">3</td>
<td class="image"><img src="assets/image/footwear.jpg" width="100px" class="img img-fluid" alt=""></td>
<td class="product"><strong>Running shoes</strong><br>This is the product description.</td>
<td class="rate text-right"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half-o"></i></span></td>
<td class="price text-right">₹699</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<section class="pt-5 pb-2">
<hr class="bg-info"></hr>
<footer>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-6 pl-5 pl-small-15 ">
<div class="footer_title">
<a href="index.html"><img src="./assets/image/download.png"></a>
</div>
<div>
Lorem ipsum dolor, sit amet consectetur rebates. Now it hinders, worthy of the great of the truth, the whole of which he addressed to him, was born, it is the pleasure of him.
</div>
</div>
<div class="col-6 col-sm-3">
<div class="footer_title pt-3 mb-3">
<h3>Quick links</h3>
</div>
<div class="footer_links">
<ul class="list-unstyled">
<li class="list-item"><a href="about.html">About</a></li>
<li class="list-item"><a href="javascript:">offers and discount</a></li>
<li class="list-item"><a href="javascript:">Get Coupon</a></li>
<li class="list-item"><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<div class="col-6 col-sm-3">
<div class="footer_title pt-3 mb-3">
<h3>New Products</h3>
</div>
<div class="footer_links">
<ul class="list-unstyled">
<li class="list-item"><a href="javascript:">Women Cloth</a></li>
<li class="list-item"><a href="javascript:">Fashion Accessories</a></li>
<li class="list-item"><a href="javascript:">Man Accessories</a></li>
<li class="list-item"><a href="javascript:">Rubber Made Toys</a></li>
</ul>
</div>
</div>
<div class="col-sm-3 col-6">
<div class="footer_title pt-3 mb-3">
<h3>Support</h3>
</div>
<div class="footer_links">
<ul class="list-unstyled">
<li><a href="javascript:;">Frequently Asked Questions</a></li>
<li><a href="javascript:;">Terms & Conditions</a></li>
<li><a href="javascript:;">Privacy Policy</a></li>
<li><a href="javascript:;">Report a Payment Issue</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="border-top">
<h6 class="text-center mt-3">Copyright ©2020 All rights reserved
</h6>
</div>
</footer>
</section>
<div class="backtop">
<a id="button" href="#top" class="btn btn-lg btn-outline-danger" role="button">
<i class="fa fa-chevron-up text-dark"></i>
</a>
</div>
</footer>
</section>
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</body>
</html>