-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
106 lines (104 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/scrollreveal"></script>
<!-- Link Swiper's CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
<link rel="stylesheet" href="./css/styles.css" />
<title>Exclusive E-Commerce Website</title>
</head>
<body>
<div class="top_nav">
<div class="container top_nav_container">
<div class="top_nav_wrapper">
<p class="tap_nav_p">
Summer Sale For All Swim Suits And Free Express Delivery - OFF 50%!
</p>
<a href="#" class="top_nav_link">SHOP NOW</a>
</div>
</div>
</div>
<nav class="nav">
<div class="container nav_container">
<a href="/index.html" class="nav_logo">EXCLUSIVE</a>
<ul class="nav_list">
<li class="nav_item"><a href="/index.html" class="nav_link">Home</a></li>
<li class="nav_item"><a href="./about.html" class="nav_link">About</a></li>
<li class="nav_item"><a href="./contact.html" class="nav_link">Contact</a></li>
<li class="nav_item">
<a href="./sign-up.html" class="nav_link">Sign up</a>
</li>
</ul>
<div class="nav_items">
<form action="#" class="nav_form">
<input
type="text"
class="nav_input"
placeholder="search here...." />
<img src="./image/search.png" alt="" class="nav_search" />
</form>
<img src="./image/heart.png" alt="" class="nav_heart" />
<a href="/cart.html">
<img src="./image/cart.png" alt="" class="nav_cart" />
</a>
</div>
<span class="hamburger">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6">
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
</span>
</div>
</nav>
<nav class="mobile_nav mobile_nav_hide">
<ul class="mobile_nav_list">
<li class="mobile_nav_item">
<a href="/" class="mobile_nav_link">Home</a>
</li>
<li class="mobile_nav_item">
<a href="#" class="mobile_nav_link">About</a>
</li>
<li class="mobile_nav_item">
<a href="#" class="mobile_nav_link">Contact</a>
</li>
<li class="mobile_nav_item">
<a href="/sign-up.html" class="mobile_nav_link">Sign Up</a>
</li>
<li class="mobile_nav_item">
<a href="/cart.html" class="mobile_nav_link">Cart</a>
</li>
</ul>
</nav>
<section>
<div class="about-container">
<h1>About Us</h1>
<p>
Welcome to our e-commerce website! We are your one-stop shop for a wide variety of products tailored to meet your every need.
From electronics to fashion, home decor to beauty essentials, we offer something for everyone.
</p>
<p>
Our mission is to deliver high-quality products at competitive prices while ensuring exceptional customer service.
With a seamless shopping experience and secure payment options, we aim to bring convenience and satisfaction to your doorstep.
</p>
<p>
Thank you for choosing us as your trusted online store. Happy shopping!
</p>
</div>
</section>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script src="./js/app.js"></script>
</body>
</html>