-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathprivacy.html
520 lines (448 loc) · 17.4 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
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy - DSA Problem Solutions</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
margin-top: 90px;
background-color: #158746;
color: white;
text-align: center;
padding: 40px 20px;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
/* Navbar Styles */
.navbar {
background: rgb(250, 249, 249);
padding: 1rem 2rem;
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
backdrop-filter: blur(10px);
border-radius: 5px;
border: 5px rgb(173, 186, 74) solid;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 40px;
width: 5rem;
transition: transform 0.3s ease;
}
.logo img:hover {
transform: scale(1.05);
}
.logo {
padding-top: 8px;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
margin: 0;
padding: 0;
}
.nav-links li {
position: relative;
}
.nav-links li a {
/* color: #000; */
color: #000;
font-weight: bold;
text-decoration: none;
padding: 8px 12px;
transition: background-color 0.3s ease-in-out;
font-size: 18px;
}
.nav-links a {
color: #333;
text-decoration: none;
font-weight: 500;
font-size: 1rem;
padding: 0.5rem 0;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #007bff;
}
/* Underline animation for nav links */
.nav-links a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #007bff;
transition: width 0.3s ease;
}
.nav-links a:hover::after {
width: 100%;
}
/* Active link style */
.nav-links a.active {
color: #007bff;
}
.nav-links a.active::after {
width: 100%;
}
/* Mobile menu button - Hidden by default */
.mobile-menu-btn {
color: #000;
display: none;
background: none;
border: none;
padding: 0.5rem;
cursor: pointer;
}
/* Responsive Design */
@media (max-width: 768px) {
.navbar {
padding: 1rem;
}
.mobile-menu-btn {
display: block;
}
.nav-links {
display: none;
/* Hide by default on mobile */
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.98);
flex-direction: column;
padding: 1rem;
gap: 1rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Show menu when active */
.nav-links.active {
display: flex;
}
.nav-links li {
width: 100%;
text-align: center;
}
.nav-links a {
display: block;
padding: 0.75rem 0;
}
.nav-links a::after {
display: none;
/* Remove hover animation on mobile */
}
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
.nav-links a {
color: #f9fafd;
}
.nav-links a:hover {
color: #60a5fa;
}
.nav-links a::after {
background-color: #60a5fa;
}
@media (max-width: 768px) {
.nav-links {
background: rgba(174, 237, 158, 0.98);
}
}
}
.container {
max-width: 800px;
margin: 40px auto;
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.container h3 {
color: #158746;
margin-bottom: 20px;
font-size: 1.8em;
}
.container p {
font-size: 1em;
color: #555;
line-height: 1.6;
margin-bottom: 20px;
}
.container ul {
list-style-type: disc;
margin-left: 20px;
}
.container ul li {
margin-bottom: 10px;
}
footer {
background-color: white;
color: white;
text-align: center;
padding: 20px 0;
position: relative;
}
footer a {
color: #fff;
text-decoration: none;
margin: 0 10px;
font-size: 1.2em;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
header h1 {
font-size: 2em;
}
.container {
padding: 20px;
}
.container h3 {
font-size: 1.6em;
}
}
#scrollBtn {
position: fixed;
bottom: 120px; /* Place closer to the bottom */
right: 35px; /* Place closer to the right */
display: none; /* Initially hidden */
background-color: #158746;
color: white;
border: none;
border-radius: 50%;
padding: 15px;
font-size: 18px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 1000; /* Ensure visibility above other elements */
transition: background-color 0.3s ease, transform 0.3s ease;
}
#scrollBtn:hover {
background-color: #000; /* Change color on hover */
transform: scale(1.2); /* Slightly enlarge */
}
</style>
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<img src="./img/logo2.png" alt="Logo" />
</div>
<button class="mobile-menu-btn" >
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="black">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
<ul class="nav-links">
<li><a href="#home" class="active">Home</a></li>
<li><a href="platform.html">Platforms</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="pages/Login.html">Log In</a></li>
<li><a href="pages/SignUp.html">Sign Up</a></li>
</ul>
</nav>
<h1>Privacy Policy</h1>
</header>
<div class="container">
<h3>Privacy Policy</h3>
<p>Welcome to <strong>DSA_SOLUTION_PLATFORM</strong>. Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal information when you use our website.</p>
<h3>Information We Collect</h3>
<p>We may collect the following types of information:</p>
<ul>
<li>Personal identification information (Name, email address, phone number, etc.)</li>
<li>Usage data (IP address, browser type, pages visited, etc.)</li>
<li>Cookies and similar technologies</li>
</ul>
<h3>How We Use Your Information</h3>
<p>We use the information we collect for the following purposes:</p>
<ul>
<li>To provide and maintain our services</li>
<li>To improve user experience</li>
<li>To communicate with you, including responding to inquiries and providing updates</li>
<li>To analyze website traffic and usage</li>
<li>To comply with legal obligations</li>
</ul>
<h3>Sharing Your Information</h3>
<p>We do not sell or share your personal information with third parties, except in the following cases:</p>
<ul>
<li>With your consent</li>
<li>To comply with legal requirements</li>
<li>To protect our rights and property</li>
</ul>
<h3>Your Rights</h3>
<p>You have the right to:</p>
<ul>
<li>Access, update, or delete your personal data</li>
<li>Opt-out of certain data collection practices</li>
<li>Request clarification on our data practices</li>
</ul>
<h3>Cookies</h3>
<p>We use cookies to enhance your browsing experience. You can adjust your browser settings to refuse cookies if you prefer.</p>
<h3>Changes to This Policy</h3>
<p>We may update this Privacy Policy from time to time. We encourage you to review this page periodically for any changes.</p>
<h3>Contact Us</h3>
<p>If you have any questions or concerns about this Privacy Policy, please contact us at <a href="mailto:support@DSAsolutionpaltform.com">support@DSAsolutionpaltform.com</a>.</p>
</div>
<!-- Top scroll button -->
<button id="scrollBtn" title="Go to top">
<i class="fa-solid fa-arrow-up fa-lg"></i>
</button>
<footer>
<div class="footer-content"
style="display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; padding: 20px; background-color: white; color: black;">
<div class="footer-section about"
style="flex: 2; min-width: 300px; display: flex; align-items:flex-start; margin: 10px; transition: transform 0.3s ease-in-out;"
onmouseover="this.style.transform='scale(1.02)'" onmouseout="this.style.transform='scale(1)'">
<img src="img/hierarchical.png" alt="DSA Problem Solutions" style="width: 100px;
margin-top: 40px;">
<p style="margin: 40px; text-align: justify;">DSA problem solutions involve step-by-step methods to solve data structure and algorithm
challenges efficiently. They include understanding the problem, selecting the right approach, implementing
optimized code, and analyzing time and space complexity for performance.</p>
</div>
<div class="footer-section services" style="flex: 1;
min-width: 150px;
margin: 10px;">
<h2 style="font-size: 18px;
margin-bottom: 10px;
transition: color 0.3s ease;" onmouseover="this.style.color='#e67e22'" onmouseout="this.style.color='black'">
DSA Problem Solutions</h2>
<ul style="list-style: none; padding: 0;">
<li><a href="about.html" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Who We Are</a></li>
<li><a href="#" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Blog</a></li>
<li><a href="#" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Work With Us</a></li>
<li><a href="#" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Investor Relations</a></li>
<li><a href="#" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Contact Us</a></li>
</ul>
</div>
<div class="footer-section learn-more" style="flex: 1; min-width: 150px; margin: 10px;">
<h2 style="font-size: 18px; margin-bottom: 10px; transition: color 0.3s ease;"
onmouseover="this.style.color='#e67e22'" onmouseout="this.style.color='black'">Learn More</h2>
<ul style="list-style: none; padding: 0;">
<li><a href="privacy.html" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Privacy Policy</a></li>
<li><a href="Security.html" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Security</a></li>
<li><a href="terms.html" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Terms of Service</a></li>
<li><a href="#" style="color: black; text-decoration: none; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.paddingLeft='10px'"
onmouseout="this.style.color='black'; this.style.paddingLeft='0'">Our Contributors</a></li>
</ul>
</div>
<div class="footer-section social-links" style="flex: 1; min-width: 150px; margin: 10px;">
<h2 style="font-size: 18px; margin-bottom: 10px; transition: color 0.3s ease;"
onmouseover="this.style.color='green'" onmouseout="this.style.color='black'">Follow Us</h2>
<ul class="social-icons" style="list-style: none; padding: 0; display: flex; gap: 10px;">
<li><a href="#" style="color: black; text-decoration: none; font-size: 24px; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.transform='scale(1.2)'; this.style.display='inline-block'"
onmouseout="this.style.color='black'; this.style.transform='scale(1)'"><i
class="fab fa-instagram"></i></a></li>
<li><a href="#" style="color: black; text-decoration: none; font-size: 24px; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.transform='scale(1.2)'; this.style.display='inline-block'"
onmouseout="this.style.color='black'; this.style.transform='scale(1)'"><i class="fab fa-facebook"></i></a>
</li>
<li><a href="#" style="color: black; text-decoration: none; font-size: 24px; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.transform='scale(1.2)'; this.style.display='inline-block'"
onmouseout="this.style.color='black'; this.style.transform='scale(1)'"><i class="fab fa-linkedin"></i></a>
</li>
<li><a href="#" style="color: black; text-decoration: none; font-size: 24px; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.transform='scale(1.2)'; this.style.display='inline-block'"
onmouseout="this.style.color='black'; this.style.transform='scale(1)'"><i class="fa-brands fa-x-twitter"></i></a>
</li>
<li><a href="#" style="color: black; text-decoration: none; font-size: 24px; transition: all 0.3s ease;"
onmouseover="this.style.color='green'; this.style.transform='scale(1.2)'; this.style.display='inline-block'"
onmouseout="this.style.color='black'; this.style.transform='scale(1)'"><i class="fab fa-youtube"></i></a>
</li>
</ul>
</div>
</div>
<div class="footer-bottom" style="padding: 10px; text-align: center; background-color: white;">
<p id="copyright" style="margin: 0; color: black; transition: color 0.3s ease;" onmouseover="this.style.color='green'" onmouseout="this.style.color='black'">
<b>©<span id="currentYear"></span> DSA Problem Solutions. All rights reserved.</b>
</p>
</div>
</footer>
<script>
// Set the current year dynamically
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"
integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
<script src="//code.tidio.co/5w3m6cpl10rvqjkkmhv1nx8p0fqloyq6.js" async></script>
<script src="scrollscript.js"></script>
<script src="audio.js"></script>
<script>
</script>
<script>
// Get the button element
const scrollBtn = document.getElementById('scrollBtn');
// Show the button when the user scrolls down 100px from the top
window.onscroll = function () {
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
scrollBtn.style.display = "block";
} else {
scrollBtn.style.display = "none";
}
};
// Scroll to the top of the page when the button is clicked
scrollBtn.onclick = function () {
window.scrollTo({
top: 0,
behavior: "smooth"
});
};
</script>
</body>
</html>