-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
306 lines (295 loc) · 20.7 KB
/
about.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>E-Commerce Store - Home</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid">
<div class="row min-vh-100">
<div class="col-12">
<header class="row">
<!-- Top Nav -->
<div class="col-12 bg-dark py-2 d-md-block d-none">
<div class="row">
<div class="col-auto mr-auto">
<ul class="top-nav">
<li>
<a href="tel:+123-456-7890"><i class="fa fa-phone-square mr-2" style="color:lime;"></i>+123-456-7890</a>
</li>
<li>
<a href="mailto:mail@ecom.com"><i class="fa fa-envelope mr-2" style="color:yellow;"></i>mail@ecom.com</a>
</li>
</ul>
</div>
<div class="col-auto">
<ul class="top-nav">
<li>
<a href="register.html"><i class="fas fa-user-edit mr-2" style="color:lightskyblue;"></i>Register</a>
</li>
<li>
<a href="login.html"><i class="fas fa-sign-in-alt mr-2" style="color:red;"></i>Login</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Top Nav -->
<!-- Header -->
<div class="col-12 bg-white pt-4">
<div class="row">
<div class="col-md-4">
<div class=" text-center text-lg-left">
<a href="index.html"><img src="images/ecommercelogo.png" alt="Ecommerce Store logo" width="150px"></a>
</div>
</div>
<div class="col-md-4 mx-auto mt-4 mt-lg-0 text-lg-left">
<form action="#">
<div class="form-group">
<div class="input-group">
<input type="search" class="form-control border-dark" placeholder="Search..." required>
<div class="input-group-append">
<button class="btn btn-outline-dark"><i class="fas fa-search"></i></button>
</div>
</div>
</div>
</form>
</div>
<div class="col-md-4 text-center text-lg-right header-item-holder">
<a href="#" class="header-item">
<i class="fas fa-heart mr-2" style="color:red;"></i><span id="header-favorite">0</span>
</a>
<a href="cart.html" class="header-item">
<i class="fas fa-shopping-bag mr-2" style="color:brown;"></i><span id="header-qty" class="mr-3">2</span>
<i class="fas fa-money-bill-wave mr-2" style="color:seagreen;"></i><span id="header-price">$4,000</span>
</a>
</div>
</div>
<!-- Nav -->
<div class="row">
<nav class="navbar navbar-expand-lg navbar-light bg-white col-12">
<button class="navbar-toggler d-lg-none border-0" type="button" data-toggle="collapse" data-target="#mainNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="mainNav">
<ul class="navbar-nav mx-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="electronics" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Electronics</a>
<div class="dropdown-menu" aria-labelledby="electronics">
<a class="dropdown-item" href="category.html">Computers</a>
<a class="dropdown-item" href="category.html">Mobile Phones</a>
<a class="dropdown-item" href="category.html">Television Sets</a>
<a class="dropdown-item" href="category.html">DSLR Cameras</a>
<a class="dropdown-item" href="category.html">Projectors</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="fashion" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Fashion</a>
<div class="dropdown-menu" aria-labelledby="fashion">
<a class="dropdown-item" href="category.html">Men's</a>
<a class="dropdown-item" href="category.html">Women's</a>
<a class="dropdown-item" href="category.html">Children's</a>
<a class="dropdown-item" href="category.html">Accessories</a>
<a class="dropdown-item" href="category.html">Footwear</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="books" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Books</a>
<div class="dropdown-menu" aria-labelledby="books">
<a class="dropdown-item" href="category.html">Adventure</a>
<a class="dropdown-item" href="category.html">Horror</a>
<a class="dropdown-item" href="category.html">Romantic</a>
<a class="dropdown-item" href="category.html">Children's</a>
<a class="dropdown-item" href="category.html">Non-Fiction</a>
</div>
</li>
</ul>
</div>
</nav>
</div>
<!-- Nav -->
</div>
<!-- Header -->
</header>
</div>
<div class="col-12 text-justify">
<h1 class="text-center">About Us</h1>
<div class="container">
<p>
Over the period of the last 11 years, <b>You</b> have taken <b>E-Commmerce Store</b> from a simple business idea to a revolution in the heart of Pakistan’s Information Technology market. The idea behind the development of <b>E-Commmerce Store</b> was never about creating a retailer with good prices; but to give birth to a place where people could be served as a part of the family. Where they could actually feel the touch of Information Technology’s application in the way they are dealt with. The world has moved to the next generation of business relationships;<br>
and we are proud to be the first in Pakistan’s Information Technology market to accept that “Yes, YOU are important!”<br><br>
With around 1,000% growth rate, we are proud and extremely happy to quote that <b>E-Commmerce Store</b> has a family of approximately 40,000 (and growing) online family members and more than 60,000 (and growing) customer’s offline;<br>
in comparison to a total of 10 customers 11 years ago. The world is changing and <b>E-Commmerce Store</b> happily accepts that the customers of today are more tech savvy and demand value for their money. We believe that change is the only thing constant and in order to deliver to you the value you deserve, we are always in the process of evolving to the next best level.<br><br>
The success of <b>E-Commmerce Store</b> is not a magical coincidence but a result of experienced professionals listening to and implementing every suggestion that YOU gifted us with over the past 11 years. The world has revolutionized and it’s time to move from those close gullied and air tight markets to a system of automation where you do not need to run after sales people asking for product specification and quotations. Have a nice sip of coffee, stretch your legs and go through the updated, complete and vast range of products awaiting your royal presence by a few clicks. Even if you are not comfortable at dealing with an online market and need a more personal touch and suggestion to things; come visit <b>E-Commmerce Store</b>.<br><br>
11 years ago people didn’t have online markets; and <b>E-Commmerce Store</b> respects your demand for one to one communication and anxiously awaits your presence.
There might still be a lot of things that you could want to know about <b>E-Commmerce Store</b>. Simply Sign up, feel free, and don’t be shy. We never tell our customers to hush away because there are others to deal with or we already met our daily sales quota. So, welcome to <b>E-Commmerce Store</b>; and don’t you worry because whether you are a corporate client or an individual customer; we are family now. Welcome to the Information Technology’s Revolution in Pakistan!
</p>
</div>
</div>
<div class="col-12 py-3 bg-light d-sm-block d-none">
<div class="row">
<div class="col-lg-3 col ml-auto large-holder">
<div class="row">
<div class="col-auto ml-auto large-icon">
<i class="fas fa-money-bill" style="color:seagreen;"></i>
</div>
<div class="col-auto mr-auto large-text">
Best Price
</div>
</div>
</div>
<div class="col-lg-3 col large-holder">
<div class="row">
<div class="col-auto ml-auto large-icon" style="color:royalblue;">
<i class="fas fa-truck-moving"></i>
</div>
<div class="col-auto mr-auto large-text">
Fast Delivery
</div>
</div>
</div>
<div class="col-lg-3 col mr-auto large-holder">
<div class="row">
<div class="col-auto ml-auto large-icon">
<i class="fas fa-check" style="color: limegreen;"></i>
</div>
<div class="col-auto mr-auto large-text">
Genuine Products
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Main Content -->
<div class="col-12 align-self-end">
<!-- Footer -->
<footer class="row">
<div class="col-12 bg-dark text-white pb-3 pt-5">
<div class="row">
<div class="col-lg-2 col-sm-4 text-center text-sm-left mb-sm-0 mb-3">
<div class="row">
<div class="col-12">
<div class="footer-logo">
<a href="index.html"><img src="images/ecommercelogo.png" alt="Ecommerce Store logo"></a>
</div>
</div>
<br>
<div class="col-12">
<address>
XYZ Street, ABC Area<br>
Faisalabad, Pakistan
</address>
</div>
<div class="col-12">
<a href="#" class="social-icon" style="color:cornflowerblue;"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon" style="color:deepskyblue;"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-icon" style="color:dodgerblue;"><i class="fab fa-linkedin"></i></a>
<a href="#" class="social-icon" style="color:palevioletred;"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-icon" style="color:red;"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-8 text-center text-sm-left mb-sm-0 mb-3">
<div class="row">
<div class="col-12 text-uppercase">
<h4>Who are we?</h4>
</div>
<div class="col-12 text-justify">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam imperdiet vel ligula vel sodales. Aenean vel ullamcorper purus, ac pharetra arcu. Nam enim velit, ultricies eu orci nec, aliquam efficitur sem. Quisque in sapien a sem vestibulum volutpat at eu nibh. Suspendisse eget est metus. Maecenas mollis quis nisl ac malesuada. Donec gravida tortor massa, vitae semper leo sagittis a. Donec augue turpis, rutrum vitae augue ut, venenatis auctor nulla. Sed posuere at erat in consequat.</p>
</div>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-5 ml-lg-auto ml-sm-0 ml-auto mb-sm-0 mb-3">
<div class="row">
<div class="col-12 text-uppercase">
<h4>Quick Links</h4>
</div>
<div class="col-12">
<ul class="footer-nav">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
<li>
<a href="./about.html">About Us</a>
</li>
<li>
<a href="#">Privacy Policy</a>
</li>
<li>
<a href="#">Terms & Conditions</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-1 col-sm-2 col-4 mr-auto mb-sm-0 mb-3">
<div class="row">
<div class="col-12 text-uppercase text-underline">
<h4>Help</h4>
</div>
<div class="col-12">
<ul class="footer-nav">
<li>
<a href="#">FAQs</a>
</li>
<li>
<a href="#">Shipping</a>
</li>
<li>
<a href="#">Returns</a>
</li>
<li>
<a href="#">Track Order</a>
</li>
<li>
<a href="#">Report Fraud</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6 text-center text-sm-left">
<div class="row">
<div class="col-12 text-uppercase">
<h4>Newsletter</h4>
</div>
<div class="col-12">
<form action="#">
<div class="form-group">
<input type="text" class="form-control" placeholder="Enter your email..." required>
</div>
<div class="form-group">
<button class="btn btn-outline-light text-uppercase">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-12 text-center">
<h4 style="background-color: #c0c0c0; color:black;">Copyright © 2020 Muhammad Sameem</h4>
</div>
</div>
</div>
</footer>
<!-- Footer -->
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>