-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
150 lines (125 loc) · 5.88 KB
/
terms.html
File metadata and controls
150 lines (125 loc) · 5.88 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Use - PixelLearn</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #FF6B6B 0%, #9B59B6 50%, #3498DB 100%);
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
h1 {
color: #9B59B6;
margin-bottom: 10px;
font-size: 32px;
}
.subtitle {
color: #666;
margin-bottom: 30px;
font-size: 14px;
}
h2 {
color: #FF6B6B;
margin-top: 30px;
margin-bottom: 15px;
font-size: 24px;
}
p {
margin-bottom: 15px;
color: #555;
}
ul {
margin-bottom: 15px;
margin-left: 20px;
}
li {
margin-bottom: 8px;
color: #555;
}
a {
color: #9B59B6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
color: #999;
font-size: 14px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>Terms of Use</h1>
<p class="subtitle">Last updated: December 2, 2024</p>
<h2>Acceptance of Terms</h2>
<p>By downloading, installing, or using PixelLearn ("the App"), you agree to be bound by these Terms of Use. If you do not agree to these terms, please do not use the App.</p>
<h2>License</h2>
<p>We grant you a limited, non-exclusive, non-transferable, revocable license to use the App for personal, non-commercial purposes, subject to these Terms of Use.</p>
<h2>App Functionality</h2>
<p>PixelLearn is an educational app that allows you to:</p>
<ul>
<li>Practice math skills with addition, subtraction, multiplication, and division quizzes</li>
<li>Learn grammar through spelling, vocabulary, and sentence structure exercises</li>
<li>Play memory matching games with various emoji themes</li>
<li>Compete in multiplayer mode with 2-4 players</li>
<li>Create and manage multiple user profiles</li>
<li>Track progress with correct answer and win counts</li>
</ul>
<h2>Free App</h2>
<p>PixelLearn is provided free of charge. There are no in-app purchases, subscriptions, or premium features. All functionality is available to all users at no cost.</p>
<h2>User Content</h2>
<p>You retain all rights to any profile names or data you create within the App. All data is stored locally on your device. We do not have access to or control over your user-generated content.</p>
<h2>Intellectual Property</h2>
<p>The App and all its contents, features, and functionality are owned by us and are protected by international copyright, trademark, and other intellectual property laws. You may not copy, modify, distribute, sell, or lease any part of the App.</p>
<h2>Prohibited Uses</h2>
<p>You agree not to:</p>
<ul>
<li>Use the App for any illegal purpose or in violation of any laws</li>
<li>Attempt to reverse engineer, decompile, or disassemble the App</li>
<li>Circumvent or attempt to circumvent any technological measures to control access to the App</li>
<li>Use the App in any way that could damage, disable, or impair the App</li>
</ul>
<h2>Disclaimers</h2>
<p>THE APP IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. WE DO NOT WARRANT THAT THE APP WILL BE UNINTERRUPTED, ERROR-FREE, OR FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS.</p>
<h2>Limitation of Liability</h2>
<p>TO THE MAXIMUM EXTENT PERMITTED BY LAW, WE SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS OR REVENUES, WHETHER INCURRED DIRECTLY OR INDIRECTLY, OR ANY LOSS OF DATA, USE, GOODWILL, OR OTHER INTANGIBLE LOSSES.</p>
<h2>Changes to Terms</h2>
<p>We reserve the right to modify these Terms of Use at any time. We will notify users of any material changes by updating the "Last updated" date of these terms. Your continued use of the App after such modifications constitutes your acceptance of the updated terms.</p>
<h2>Termination</h2>
<p>We may terminate or suspend your access to the App immediately, without prior notice or liability, for any reason, including if you breach these Terms of Use.</p>
<h2>Governing Law</h2>
<p>These Terms of Use shall be governed by and construed in accordance with the laws of the United States, without regard to its conflict of law provisions.</p>
<h2>Contact Us</h2>
<p>If you have any questions about these Terms of Use, please contact us at:</p>
<p><a href="mailto:support@pixellearnapp.com">support@pixellearnapp.com</a></p>
<div class="footer">
<p>© 2024 PixelLearn. All rights reserved.</p>
<p><a href="privacy.html">Privacy Policy</a> | <a href="support.html">Support</a></p>
</div>
</div>
</body>
</html>