forked from Tejashri-Taral/TrendTrove-Ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
121 lines (107 loc) · 4.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - TrendTrove</title>
<link rel="stylesheet" href="style.css"> <!-- Link to your common CSS file -->
</head>
<body>
<header class="header" id="header">
<div class="logo">
<p>TrendTrove</p>
<i class="fa-solid fa-bars menu" id="menu"></i>
</div>
<nav class="navigation">
<ul class="nav-links">
<li class="nav-link">
<a href="index.html">Home</a>
</li>
<li class="nav-link">
<a href="#">About</a>
</li>
<li class="nav-link">
<a href="#">Features</a>
</li>
<li class="dropdown">
<a href="#">Products</a>
<ul class="dropdown-content">
<li><a href="mens.html">Mens</a></li>
<li><a href="womens.html">Womens</a></li>
</ul>
</li>
<li class="nav-link">
<a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
<nav class="utils">
<ul class="nav-links">
<li class="nav-link">
<i class="fa-solid fa-cart-shopping"></i>
</li>
<li class="nav-link">
<i class="fa-solid fa-user"></i>
</li>
<li class="nav-link">
<i class="fa-solid fa-magnifying-glass"></i>
</li>
</ul>
</nav>
</header>
<section class="about-section">
<h2 class="about-title">About Us</h2>
<p class="about-description">Welcome to TrendTrove, your ultimate destination for fashion-forward apparel, accessories, and lifestyle products.
At TrendTrove, we believe in celebrating individuality and empowering every customer to express their unique style with confidence. Whether you're looking for everyday essentials or
statement pieces, we source high-quality, sustainable, and stylish items to elevate your wardrobe.<br><br>
At the heart of TrendTrove is a passion for style and a commitment to customer satisfaction. Our mission is to offer a seamless shopping experience with exceptional service, fast shipping, and an easy return process.
We stay ahead of the fashion curve so you can step out feeling your best, whatever the occasion.
<br><br>Discover your style with TrendTrove — where fashion meets confidence!</p>
</section>
<footer class="footer">
<div class="footer-section">
<h1>Contact Us</h1>
<ul class="footer-list">
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li>2nd Floor, Bandra West, Mumbai, Maharashtra 400050, India</li>
<li><a href="tel:+91xxxxxxxx2020">+91 xxxxxx2020</a></li>
<li class="border-list"></li>
<li class="socials">
<a href="https://www.linkedin.com/in/tejashri-taral-5006a82a0/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com/Tejashri-Taral" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://x.com/Tejashri_10?t=SWxALwKxy-nVrTcbYTFUcA&s=08" target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://www.instagram.com/your_instagram" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
</ul>
</div>
<div class="footer-section">
<h1>Quick Links</h1>
<ul class="footer-list">
<li><a href="about.html">About Us</a></li>
<li><a href="/terms-conditions">Terms & Conditions</a></li>
<li><a href="/return-policy">Return Policy</a></li>
<li><a href="https://github.com/Tejashri-Taral/TrendTrove-Ecommerce" target="_blank">Star Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div class="footer-section">
<h1>Subscribe to Newsletter</h1>
<ul class="footer-list">
<li>Maxime quae inventore sunt odio perspiciatis vitae saepe officia dolorem.</li>
<li class="sub">
<input type="text" placeholder="Enter your email">
<button class="btn">Subscribe</button>
</li>
</ul>
</div>
</footer>
</body>
</html>