forked from vishanurag/Canvas-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
526 lines (461 loc) · 16.7 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
521
522
523
524
525
526
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Creative Canvas Tool</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
:root {
--primary-color: #cf8cff;
--secondary-color: #e55ce7;
--accent-color: #f1a4ff;
--text-color: #2d2d2d;
--light-bg: #f8f5ff;
--dark-bg: #d134d4;
--transition: all 0.3s ease;
--hover-color: #e567f0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
line-height: 1.6;
color: var(--text-color);
background-color: var(--light-bg);
}
/* Enhanced Navbar */
.navbar {
background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(108, 92, 231, 0.2);
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.title {
display: flex;
align-items: center;
gap: 1rem;
}
.site-name {
color: white;
font-size: 1.8rem;
margin: 0;
}
.navbar {
background-color: #f0adfb;
padding: 10px;
display: flex;
justify-content: center; /* Center aligns the navbar */
position: fixed; /* Sticks to the top */
width: 100%;
z-index: 1000;
}
.navbar h1 {
color: rgb(255, 255, 255);
margin: 0;
}
.nav-links {
display: flex;
gap: 20px;
}
.nav-links a {
color: rgb(255, 255, 255);
text-decoration: none;
padding: 6px 4px;
border-radius: 4px;
transition: background-color 0.3s;
}
.nav-links a:hover {
background-color: #541058;
}
/* Hero Section */
.hero-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 4rem 0;
margin-bottom: 3rem;
text-align: center;
}
/* Main Content Styles */
.about-section {
padding: 4rem 0;
}
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
margin-bottom: 4rem;
}
.about-image {
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(108, 92, 231, 0.15);
transition: var(--transition);
}
.about-image:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}
.privacy-content {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}
.privacy-section {
margin-bottom: 2rem;
}
.privacy-section h3 {
color: var(--secondary-color);
margin-bottom: 1rem;
}
.privacy-list {
list-style-type: none;
padding-left: 0;
}
.privacy-list li {
margin-bottom: 1rem;
padding-left: 1.5rem;
position: relative;
}
.privacy-list li::before {
content: "•";
color: var(--primary-color);
position: absolute;
left: 0;
}
/* Team Section */
.team-section {
margin-top: 4rem;
text-align: center;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.team-member {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
transition: var(--transition);
}
.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(108, 92, 231, 0.15);
background: linear-gradient(135deg, white, #f8f5ff);
}
.team-member h4 {
color: var(--secondary-color);
}
/* Footer Styles */
.footer {
background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
color: white;
padding: 3rem 0 1rem;
margin-top: 4rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 2rem;
}
.social-links a {
color: white;
background: rgba(255,255,255,0.1);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.social-links a:hover {
background: var(--accent-color);
transform: translateY(-3px);
color: var(--dark-bg);
}
.footer-credit {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-credit a {
color: var(--accent-color);
text-decoration: none;
}
.footer-credit a:hover {
color: white;
}
/* Back to Top Button */
#back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
background: var(--primary-color);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: var(--transition);
opacity: 0;
visibility: hidden;
box-shadow: 0 3px 10px rgba(108, 92, 231, 0.3);
}
#back-to-top.visible {
opacity: 1;
visibility: visible;
}
#back-to-top:hover {
background: var(--secondary-color);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-content {
flex-direction: column;
gap: 1rem;
}
.nav-links {
flex-wrap: wrap;
justify-content: center;
}
.content-grid {
grid-template-columns: 1fr;
}
.team-grid {
grid-template-columns: 1fr;
}
}
</style>
<style>
/* Circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
transition: transform 0.1s ease-out;
}
</style>
</head>
<body>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<nav class="navbar">
<div class="container nav-content">
<div class="title">
<h1 class="site-name">Canvas Editor</h1>
<i class="fa-solid fa-paintbrush"></i>
</div>
<nav class="navbar">
<div class="nav-links">
<h1 class="canvas">Canvas Editor</h1>
<a href="index.html">Home</a>
<a href="about-us.html">About Us</a>
<a href="review.html">Review</a>
<a href="testimonial.html">Testimonial</a>
<a href="privacy.html">Privacy</a>
<a href="tutorial.html">Tutorial</a>
<a href="Blog_page.html">Blog</a>
<a href="Faq.html">FAQ</a>
<a href="./Feedback.html">Feedback</a>
<!-- <a href="signup.html">Sign Up</a> -->
<a href="contributors.html">Contributors</a>
</div>
</div>
</nav>
<div class="hero-section">
<div class="container">
<h1>Privacy Policy</h1>
<p>Your privacy is our priority</p>
</div>
</div>
<section class="about-section">
<div class="container">
<div class="content-grid">
<div>
<img src="https://media.istockphoto.com/id/636761588/photo/used-brushes-on-an-artists-palette-of-colorful-oil-paint.jpg?s=612x612&w=0&k=20&c=38YQxVJVWnNfvGtlb7AXMx_ItyHZMEdmWenNkWNQ91g=" alt="Creative Canvas Tool in action" class="about-image">
</div>
<div>
<h2>Effective Date: 13/10/2024</h2>
<p>Creative Canvas Tool is designed to empower artists of all skill levels, offering an intuitive platform that transforms ideas into stunning digital artwork. With a wide range of brushes, colors, and textures at your fingertips, you can easily explore your creativity and experiment with different styles.</p>
</div>
</div>
<div class="privacy-content">
<div class="privacy-section">
<h3>1. Information We Collect</h3>
<p><strong>Personal Information:</strong> We may collect personal information that you provide directly to us when you register for an account, create or save a canvas, or contact us.</p>
<p><strong>Usage Data:</strong> We automatically collect certain information about your interaction with our Site, including your IP address, browser type, device information, pages viewed, and the time and date of your visit.</p>
</div>
<div class="privacy-section">
<h3>2. How We Use Your Information</h3>
<ul class="privacy-list">
<li>To provide, maintain, and improve our services</li>
<li>To personalize your experience on our Site</li>
<li>To communicate with you, including sending updates and promotional materials</li>
<li>To respond to your comments, questions, and requests</li>
<li>To monitor and analyze usage and trends to improve our Site</li>
</ul>
</div>
<div class="privacy-section">
<h3>3. Sharing Your Information</h3>
<p><strong>Service Providers:</strong> We may share your information with trusted third-party service providers who assist us in operating our Site.</p>
<p><strong>Legal Compliance:</strong> We may disclose your information to comply with applicable laws, regulations, legal processes, or governmental requests.</p>
</div>
<div class="privacy-section">
<h3>4. Security of Your Information</h3>
<p>We implement reasonable security measures to protect your personal information from unauthorized access, use, or disclosure.</p>
</div>
<div class="privacy-section">
<h3>5. Changes to This Privacy Policy</h3>
<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page with a new effective date.</p>
</div>
</div>
<div class="team-section">
<h2>Our Team</h2>
<div class="team-grid">
<div class="team-member">
<h4>Anurag</h4>
<p>Founder & Lead Developer</p>
</div>
<div class="team-member">
<h4>Somyadip Ghosh</h4>
<p>Project Mentor</p>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="social-links">
<a href="#" aria-label="Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/anuragvishwakarma/" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="#" aria-label="Pinterest"><i class="fab fa-pinterest"></i></a>
</div>
<div class="footer-credit">
<p>Created by <a href="https://github.com/vishanurag/" target="_blank" rel="noopener noreferrer">ANURAG VISHWAKARMA</a> | All rights reserved © <span id="year"></span></p>
</div>
</div>
</footer>
<button id="back-to-top" aria-label="Back to top">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Back to Top Button Functionality
const backToTop = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.scrollY > 300) {
backToTop.classList.add('visible');
} else {
backToTop.classList.remove('visible');
}
});
backToTop.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
</script>
<script>
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
// Update the position and scale of each circle
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
// Get the next circle in the sequence
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
// Repeat the animation
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();
</script>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>