-
Notifications
You must be signed in to change notification settings - Fork 364
/
copyright.html
589 lines (516 loc) · 18.6 KB
/
copyright.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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
<!DOCTYPE html>
<html lang="en">
<head>
main
main
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Copyright Page</title>
<link rel="stylesheet" href="styles.css">
<style>
/* circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 24px;
background-color: rgb(255, 0, 0);
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
}
</style>
</head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Copyright Policy - BuddyTrail</title>
<link rel="icon" href="https://img.icons8.com/?size=100&id=11808&format=png&color=000000" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link rel="stylesheet" href="terms.css" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Copyright Policy - BuddyTrail</title>
<link rel="icon" href="https://img.icons8.com/?size=100&id=11808&format=png&color=000000" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link rel="stylesheet" href="terms.css" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
.container {
display: flex;
width: 100%;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.toc {
flex-basis: 25%;
background-color: #e9ecef;
padding: 20px;
border-radius: 8px;
margin-right: 20px;
height: fit-content;
position: sticky;
top: 80px;
}
.main-content {
flex-basis: 75%;
padding: 20px;
}
h1,
h2 {
color: #004085;
}
h1 {
font-size: 2.2rem;
text-align: center;
margin-bottom: 30px;
border-bottom: 2px solid #004085;
padding-bottom: 10px;
}
h2 {
font-size: 1.8rem;
margin-top: 40px;
margin-bottom: 20px;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
p {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
}
ul {
list-style: disc;
margin-left: 20px;
padding-left: 20px;
}
li {
margin-bottom: 10px;
color: #555;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.toc h2 {
font-size: 1.5rem;
color: #004085;
}
.toc ul {
list-style: none;
padding: 0;
}
.toc ul li {
margin-bottom: 10px;
}
.toc ul li a {
text-decoration: none;
color: #007bff;
font-weight: bold;
}
@media (max-width: 768px) {
main
.container {
flex-direction: column;
}
.toc {
margin-bottom: 20px;
margin-right: 0;
width: 100%;
}
.main-content {
width: 100%;
}
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.4rem;
}
p {
font-size: 0.95rem;
}
}
</style>
</head>
main
<body>
<header>
<div class="container3">
<nav>
<div class="logo">
<img src="img/logo.png" id="logo-web" alt="BuddyTrail Logo" />
<h1 id="logo">BuddyTrail</h1>
</div>
<button class="hamburger" id="hamburger">☰</button>
<ul class="nav-links" id="nav-links">
<button class="dropdown-close-btn" id="closeBtn">✖</button>
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link">About Us</a></li>
<li><a href="team.html" class="nav-link">Team</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
<li><a href="auth.html" class="btn-primary">Sign In</a></li>
</ul>
<button class="mode-toggle" id="modeToggle">
<span class="sun-icon glow">
<img src="day-mode.png" alt="Light mode" />
</span>
<span class="moon-icon glow" style="display: none">
<img src="moon.png" alt="Dark mode" />
</span>
</button>
</nav>
</div>
</header>
<div class="container">
<!-- Table of contents -->
<div class="toc">
<h2>Table of Contents</h2>
<ul>
<li><a href="#overview">1. Copyright Overview</a></li>
<li><a href="#ownership">2. Content Ownership</a></li>
<li><a href="#use">3. Permitted Use</a></li>
<li><a href="#restrictions">4. Use Restrictions</a></li>
<li><a href="#user-content">5. User-Generated Content</a></li>
<li><a href="#trademarks">6. Trademarks</a></li>
<li><a href="#infringement">7. Copyright Infringement</a></li>
<li><a href="#contact">8. Contact Information</a></li>
</ul>
</div>
<!-- Main content -->
<div class="main-content">
<h1><br />BuddyTrail - Copyright Policy</h1>
<h2 id="overview">1. Copyright Overview</h2>
<p>All content available on BuddyTrail, including but not limited to text, graphics, logos, button icons,
images, audio clips, digital downloads, data compilations, and software, is the property of BuddyTrail
or its content suppliers and is protected by international copyright laws.</p>
<h2 id="ownership">2. Content Ownership</h2>
<p>The content, organization, graphics, design, compilation, magnetic translation, digital conversion, and
other matters related to the BuddyTrail website are protected under applicable copyrights, trademarks,
and other proprietary rights.</p>
<h2 id="use">3. Permitted Use</h2>
<p>Users may:</p>
<ul>
<li>Access and view the content on BuddyTrail for personal, non-commercial use</li>
<li>Print or download content for personal reference</li>
<li>Share links to our content through social media platforms</li>
<li>Use features and functionalities provided explicitly for user interaction</li>
</ul>
<h2 id="restrictions">4. Use Restrictions</h2>
<p>Users may not:</p>
<ul>
<li>Modify, copy, distribute, transmit, display, perform, reproduce, publish, license, create derivative
works from, transfer, or sell any information obtained from BuddyTrail</li>
<li>Use our content for commercial purposes without explicit written permission</li>
<li>Remove any copyright, trademark, or other proprietary notices from any content</li>
<li>Frame or mirror any part of the website without prior written authorization</li>
</ul>
<h2 id="user-content">5. User-Generated Content</h2>
<p>When users submit content to BuddyTrail (such as reviews, comments, or travel stories):</p>
<ul>
<li>Users retain their copyright but grant BuddyTrail a non-exclusive, worldwide, perpetual license to
use, display, and distribute the content</li>
<li>Users must ensure they have the right to share any content they post</li>
<li>BuddyTrail reserves the right to remove any user-generated content that violates our policies</li>
</ul>
<h2 id="trademarks">6. Trademarks</h2>
<p>The BuddyTrail name, logo, and all related names, logos, product and service names, designs, and slogans
are trademarks of BuddyTrail or its affiliates. You must not use such marks without the prior written
permission of BuddyTrail.</p>
<h2 id="infringement">7. Copyright Infringement</h2>
<p>If you believe that any content on BuddyTrail infringes upon your copyright, please submit a notification
containing the following information:</p>
<ul>
<li>A physical or electronic signature of the copyright owner</li>
<li>Identification of the copyrighted work claimed to be infringed</li>
<li>Description of where the infringing material is located on our website</li>
<li>Your contact information</li>
<li>A statement of good faith belief regarding the unauthorized use</li>
<li>A statement of accuracy and authority to act on behalf of the copyright owner</li>
</ul>
<h2 id="contact">8. Contact Information</h2>
<p>For copyright-related inquiries or to report copyright infringement, please contact us at:</p>
<p>Email: <a href="mailto:copyright@buddytrail.com">copyright@buddytrail.com</a></p>
<p>Phone: <a href="tel:+1234567890" style="color: rgb(90, 198, 245); text-decoration: none;">+123 456 7890</a></p>
<p>Address: [Your Business Address]</p>
<p>Last Updated: February 2024</p>
</div>
</div>
<footer>
<div class="container2">
<div class="footer-content">
<div class="footer-column">
<h3>About Us</h3>
<p>
Discover and plan affordable trips with BuddyTrail's travel
companion tools.
</p>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="faq.html" class="faq-link">FAQs</a></li>
<li><a href="/#services">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="team.html">Team</a></li>
<li>
<a href="contributor/contributor.html">Our Contributor</a>
</li>
</ul>
</div>
<div class="footer-column">
<h3>Contact Us</h3>
<p>Email: <a href="mailto:info@example.com" style="color: white; text-decoration: none;">info@example.com</a></p>
<p>Phone: <a href="tel:+1234567890" style="color: white; text-decoration: none;">+123 456 7890</a></p>
main
main
</div>
main
<!-- 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>
<script>
// coordinates for the cursor :
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
const colors = [
"#fc5720", "#fc6532", "#fc6532","#fd8b65", "#d5585c", "#fac3b1", "#f4d5cb", "#fefefe", "#fefefe", "#cdf2c5", "#b2eca5", "#95e283", "#7dda68", "#4adc2d", "#69d451", "#54c939", "#34b916", "#28b309", "#1e9c02",
];
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) {
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;
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
</script>
<footer>
<div class="container3">
<div class="footer-content">
<div class="footer-column">
<h3>About Us</h3>
<p>Discover and plan affordable trips with BuddyTrail's travel companion tools.</p>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="faq.html" class="faq-link">FAQs</a></li>
<li><a href="/#services">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contributor/contributor.html">Our Contributor</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contact Us</h3>
<p>Email: info@example.com</p>
<p>Phone: +123 456 7890</p>
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://discord.com/invite/priyaghosal" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://twitter.com/PriyaGhosa39968" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/PriyaGhosal/BuddyTrail" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/priya-ghosal-785771286/" target="_blank"><i
class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<p class="copyright">© 2024 BuddyTrail | All rights reserved.</p>
main
main
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://discord.com/invite/priyaghosal" target="_blank"
><i class="fab fa-discord"></i
></a>
<a href="https://twitter.com/PriyaGhosa39968" target="_blank"
><i class="fab fa-twitter"></i
></a>
<a
href="https://github.com/PriyaGhosal/BuddyTrail"
target="_blank"
><i class="fab fa-github"></i
></a>
<a
href="https://www.linkedin.com/in/priya-ghosal-785771286/"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</div>
<p class="copyright">© 2024 BuddyTrail | All rights reserved.</p>
</div>
</footer>
<script>
// Hamburger menu functionality
document.addEventListener("DOMContentLoaded", function () {
const hamburger = document.getElementById("hamburger");
const navList = document.getElementById("nav-links");
const closeBtn = document.getElementById("closeBtn");
hamburger.addEventListener("click", function () {
navList.classList.toggle("active");
});
closeBtn.addEventListener("click", function () {
navList.classList.remove("active");
});
// Dark mode toggle
const modeToggle = document.getElementById("modeToggle");
const sunIcon = document.querySelector(".sun-icon");
const moonIcon = document.querySelector(".moon-icon");
const currentTheme = localStorage.getItem("theme") || "light";
if (currentTheme === "dark") {
document.body.classList.add("dark-mode");
sunIcon.style.display = "none";
moonIcon.style.display = "inline-block";
}
main
modeToggle.addEventListener("click", () => {
document.body.classList.toggle("dark-mode");
const isDarkMode = document.body.classList.contains("dark-mode");
if (isDarkMode) {
sunIcon.style.display = "none";
moonIcon.style.display = "inline-block";
localStorage.setItem("theme", "dark");
} else {
sunIcon.style.display = "inline-block";
moonIcon.style.display = "none";
localStorage.setItem("theme", "light");
}
});
// Scroll animations
const observer = new IntersectionObserver(
(entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = "1";
entry.target.style.transform = "translateY(0)";
}
});
},
{
threshold: 0.1
}
);
document.querySelectorAll('h2, p, ul').forEach(el => {
el.style.opacity = "0";
el.style.transform = "translateY(20px)";
el.style.transition = "all 0.6s ease";
observer.observe(el);
});
});
</script>
main
modeToggle.addEventListener("click", () => {
document.body.classList.toggle("dark-mode");
const isDarkMode = document.body.classList.contains("dark-mode");
if (isDarkMode) {
sunIcon.style.display = "none";
moonIcon.style.display = "inline-block";
localStorage.setItem("theme", "dark");
} else {
sunIcon.style.display = "inline-block";
moonIcon.style.display = "none";
localStorage.setItem("theme", "light");
}
});
// Scroll animations
const observer = new IntersectionObserver(
(entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = "1";
entry.target.style.transform = "translateY(0)";
}
});
},
{
threshold: 0.1
}
);
document.querySelectorAll('h2, p, ul').forEach(el => {
el.style.opacity = "0";
el.style.transform = "translateY(20px)";
el.style.transition = "all 0.6s ease";
observer.observe(el);
});
});
</script>
main
</body>
</html>