forked from Tejashri-Taral/TrendTrove-Ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
241 lines (213 loc) · 8.3 KB
/
privacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<link rel="stylesheet" href="style.css"> <!-- Link to your common CSS file -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css">
<style>
.background-container {
max-width: 1000px;
margin: 0 auto;
padding: 30px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
}
.policy-container h1 {
font-size: 2.5em;
color: #333;
margin-bottom: 15px;
text-align: center;
border-bottom: 2px solid rgba(0, 0, 0, 0.1);
padding-bottom: 10px;
}
.center-text {
color: #2c3e50;
font-size: 1.4em;
line-height: 1.8;
margin-bottom: 25px;
text-align: center;
font-weight: 600;
}
.policy-container h2 {
font-size: 1.5em;
color: #333;
margin: 20px 0 10px;
}
.policy-container p {
font-size: 1rem;
font-family: "futura";
color: #555;
margin: 5px 0;
line-height: 1.6;
text-align: left;
}
.terms-thanks {
font-size: 1rem;
font-family: "futura";
color: #555;
margin: 5px 0;
line-height: 1.6;
text-align: left;
}
.terms-thanks a {
color: grey;
}
/* Scroll Progress Bar*/
#progress-container {
position: fixed ;
top: 1px;
left: 0;
width: 100%;
height: 15px;
z-index: 99990;
/* background: #f3f3f3; */
}
#progress-bar {
position: fixed;
top: 0.3px;
left: 0;
width: 0%;
height: 6px;
width: 0;
background: linear-gradient(90deg, rgba(27, 27, 27, 0.762) 0%, rgb(61, 61, 61) 50%, rgba(38, 38, 38, 0.679) 100%);
box-shadow: 0 0 4px rgba(255, 244, 221, 0.7), 0 0 10px rgba(255, 255, 255, 0.496);
transition: width 0.09s ease-in-out;
/* border-radius: 10px; */
}
</style>
</head>
<body>
<div id="progress-container">
<div id="progress-bar"></div>
</div>
<header class="header" id="header">
<div class="logo">
<a href="/"> <img src="images/logo.png" alt="Logo" srcset=""> </a>
<i class="fa-solid fa-bars menu" id="menu"></i>
</div>
<nav class="bg-neutral-100 py-20">
<div class="tabs-container">
<ul id="tabs" class="tabs">
<li class="tab">
<a href="index.html">Home</a>
<div class="cursor"></div>
</li>
<li class="tab">
<a href="about.html">About</a>
<div class="cursor"></div>
</li>
<li class="tab">
<a href="features.html">Features</a>
<div class="cursor"></div>
</li>
<li class="dropdown tab">
<a href="#">Products</a>
<div class="cursor"></div>
<ul class="dropdown-content ">
<li><a href="mens.html" class="priye">Mens</a>
</li>
<li><a href="womens.html">Womens</a></li>
<li><a href="child.html">Kid Section</a></li>
<li><a href="accessories.html">Accessories</a></li>
</ul>
</li>
<li class="tab" style="margin-left: 15px;">
<a href="contact.html">Contact Us</a>
<div class="cursor"></div>
</li>
</ul>
</div>
</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>
<div class="background-container">
<div class="policy-container">
<h1>Privacy Policy</h1>
<p class="center-text">Welcome to our Privacy Policy page. Your privacy is critically important to us.</p>
<h2>1. Information We Collect</h2>
<p>We collect several types of information for various purposes to provide and improve our service to you.</p>
<h2>2. How We Use Your Information</h2>
<p>We use the data we collect to operate, maintain, and improve our services. This includes using your data to understand how users interact with our services and to communicate updates.</p>
<h2>3. Cookies</h2>
<p>We use cookies and similar tracking technologies to track the activity on our website and hold certain information.</p>
<h2>4. Data Protection Rights</h2>
<p>You have the right to access, update, or delete your personal information. If you make a request, we have one month to respond to you.</p>
<h2>5. Changes to This Privacy Policy</h2>
<p>We may update our Privacy Policy from time to time. You are advised to review this page periodically for any changes.</p>
<h2>6. Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us.</p>
<div class="terms-thanks">
<p>
Thank you for visiting <a href="index.html" style="color: grey;">TrendTrove</a>. If you have any questions about these terms, please <a href="contact.html" style="color: grey;">Contact Us</a>.
</p>
</div>
</div>
</div>
<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/" id="linkedin" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com/Tejashri-Taral" id="github" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://x.com/Tejashri_10?t=SWxALwKxy-nVrTcbYTFUcA&s=08" id="fa-x-twitter" target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://www.instagram.com/your_instagram" id="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="contributors.html">Our Contributors</a></li>
<li><a href="terms-conditions.html">Terms & Conditions</a></li>
<li><a href="return-policy.html">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>
<script src="script/progressbar.js"></script>
</body>
</html>