forked from snowrider3dunblock/snowrider3dunblock.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtermsofservice.html
More file actions
76 lines (76 loc) · 4.86 KB
/
Copy pathtermsofservice.html
File metadata and controls
76 lines (76 loc) · 4.86 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - Snow Rider 3D</title>
<meta name="description" content="Read the Terms of Service for Snow Rider 3D. Understand your rights, responsibilities, and rules for using our website and games." />
<link rel="icon" type="image/png" href="datas/favicon.png" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body class="bg-white font-sans text-gray-800">
<header class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-gamepad text-3xl text-primary"></i>
<h1 class="text-2xl font-bold text-gray-800">Snow Rider 3D</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="index.html" class="font-medium hover:text-primary transition">Home</a>
<a href="about.html" class="font-medium hover:text-primary transition">About</a>
<a href="contact.html" class="font-medium hover:text-primary transition">Contact</a>
<a href="privacypolicy.html" class="font-medium hover:text-primary transition">Privacy Policy</a>
<a href="termsofservice.html" class="font-medium hover:text-primary transition">Terms of Service</a>
<a href="dmca.html" class="font-medium text-primary font-bold">DMCA</a>
</nav>
</div>
</header>
<main class="container mx-auto px-4 py-12">
<section class="max-w-3xl mx-auto bg-gray-50 p-8 rounded-xl shadow-md">
<h2 class="text-3xl font-bold mb-6 text-gray-900">Terms of Service</h2>
<p class="mb-4 text-gray-700">
By accessing and using Snow Rider 3D, you agree to comply with these Terms of Service. Please read them carefully to understand your rights and responsibilities as a user.
</p>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Use of the Website & Games</h3>
<ul class="mb-4 list-disc pl-6 text-gray-700">
<li>Snow Rider 3D is provided for personal, non-commercial use only.</li>
<li>You may not copy, modify, distribute, or reverse-engineer any part of our games or website without permission.</li>
<li>Do not use our site for unlawful, harmful, or disruptive activities.</li>
</ul>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Content & Intellectual Property</h3>
<ul class="mb-4 list-disc pl-6 text-gray-700">
<li>All content, graphics, and code are owned by Snow Rider 3D or licensed appropriately.</li>
<li>Respect copyright and intellectual property rights.</li>
</ul>
<h3 class="text-xl font-semibold mb-2 text-gray-800">User Conduct</h3>
<ul class="mb-4 list-disc pl-6 text-gray-700">
<li>Do not post or share offensive, illegal, or inappropriate content.</li>
<li>Do not attempt to access restricted areas or interfere with site functionality.</li>
</ul>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Disclaimer & Limitation of Liability</h3>
<ul class="mb-4 list-disc pl-6 text-gray-700">
<li>Crazy Cattle 3D is provided "as is" without warranties of any kind.</li>
<li>We are not liable for any damages or losses resulting from use of our site or games.</li>
<li>We may update, change, or discontinue any part of the site or games at any time.</li>
</ul>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Changes to Terms</h3>
<p class="mb-4 text-gray-700">
We may update these Terms of Service at any time. Continued use of the site means you accept any changes.
</p>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Contact</h3>
<p class="mb-4 text-gray-700">
For questions about these Terms, please email us at <a href="mailto:SnowRider3D@gmail.com" class="text-primary underline">SnowRider3D@gmail.com</a>.
</p>
<div class="mt-8 text-center">
<a href="index.html" class="inline-block bg-primary text-white px-6 py-3 rounded-lg font-bold shadow hover:bg-blue-600 transition">Back to Home</a>
</div>
</section>
</main>
<footer class="bg-gray-50 border-t border-gray-200 mt-12">
<div class="container mx-auto px-4 py-8 text-center text-gray-500">
© 2025 Snow Rider 3D. All rights reserved.
</div>
</footer>
</body>
</html>