forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopyright.html
94 lines (81 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<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">
</head>
<body>
<div class="container">
<header>
<h1>Copyright Notice</h1>
</header>
<main>
<section class="content">
<h2>© 2024 BuddyTrail</h2>
<p>All rights reserved.</p>
<p>This website is protected under copyright laws. Unauthorized use or reproduction of any content, including text, images, and videos, is strictly prohibited.</p>
<p>For inquiries or permission requests, please contact us at:</p>
<p><strong>Email:</strong> supportbuddytrail.com</p>
</section>
</main>
<footer>
<p>Privacy Policy | Terms of Service</p>
</footer>
</div>
</body>
</html>
<style>
/* General Styles */
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #f4f4f9;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
header {
margin-bottom: 30px;
}
h1 {
font-size: 2.5rem;
color: #1e88e5;
}
main {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 1.8rem;
color: #000000;
}
.content p {
font-size: 1rem;
margin: 10px 0;
}
footer {
margin-top: 30px;
font-size: 0.9rem;
color: #666;
}
footer p {
margin: 5px 0;
}
/* Responsive Design */
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
}
</style>