-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.html
67 lines (59 loc) · 3.01 KB
/
terms.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Terms of Service - Your Game Name</title>
<!-- Same CSS imports as index.html -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,500;0,600;0,700;1,300;1,500;1,600;1,700&display=swap" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
<link href="css/custom.css" rel="stylesheet" />
</head>
<body>
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light fixed-top shadow-sm" id="mainNav">
<div class="container px-5">
<a class="navbar-brand fw-bold" href="index.html">Your Game Name</a>
</div>
</nav>
<!-- Content-->
<section class="masthead">
<div class="container px-5">
<div class="row gx-5">
<div class="col-12">
<h1 class="mb-4">Terms of Service</h1>
<h2 class="h4 mb-3">Newsletter Subscription</h2>
<p>By subscribing to our newsletter, you agree to receive periodic emails about our game development progress, releases, and related announcements.</p>
<h2 class="h4 mb-3">Email Communications</h2>
<p>We commit to:</p>
<ul>
<li>Only send relevant game-related content</li>
<li>Never share your email address with third parties</li>
<li>Provide an easy way to unsubscribe from our communications</li>
</ul>
<h2 class="h4 mb-3">Intellectual Property</h2>
<p>All content related to our game, including but not limited to artwork, game mechanics, and character designs, is protected by copyright and other intellectual property rights.</p>
<h2 class="h4 mb-3">Changes to Terms</h2>
<p>We reserve the right to modify these terms at any time. We will notify subscribers of any significant changes via email.</p>
<h2 class="h4 mb-3">Contact</h2>
<p>If you have any questions about these terms, please contact us at [email protected]</p>
</div>
</div>
</div>
</section>
<!-- Footer-->
<footer class="bg-black text-center py-5">
<div class="container px-5">
<div class="text-white-50 small">
<div class="mb-2">© Your Game Name 2024. All Rights Reserved.</div>
<a href="privacy.html">Privacy</a>
<span class="mx-1">·</span>
<a href="terms.html">Terms</a>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>