-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
72 lines (60 loc) · 2.93 KB
/
terms.html
File metadata and controls
72 lines (60 loc) · 2.93 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
<!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 | ShapeMaster</title>
<link rel="stylesheet" href="style.css">
<style>
.content-page { padding: 60px 0; }
.content-card { background: var(--white); border: var(--border); box-shadow: var(--shadow); padding: 40px; }
.content-card h2 { font-size: 48px; margin-bottom: 20px; }
.content-card h3 { font-size: 28px; margin-top: 30px; margin-bottom: 15px; }
.content-card p { margin-bottom: 20px; }
</style>
</head>
<body>
<nav>
<div class="container">
<a href="index.html" class="logo">SHAPE MASTER</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="index.html#features">Features</a>
<a href="../index.html" class="btn btn-sm" style="font-size: 14px; padding: 5px 15px;">PLAY NOW</a>
</div>
</div>
</nav>
<main class="content-page grid-bg">
<div class="container">
<div class="content-card">
<h2>TERMS OF SERVICE</h2>
<p><strong>Last Updated: April 21, 2026</strong></p>
<p>By accessing or using ShapeMaster, you agree to be bound by these Terms of Service. Please read them carefully.</p>
<h3>1. Acceptance of Terms</h3>
<p>ShapeMaster provides its service to you subject to these Terms. If you do not agree, you must not access or use the application.</p>
<h3>2. Description of Service</h3>
<p>ShapeMaster is a geometric drawing challenge platform available via web and mobile. We reserve the right to modify or discontinue the service at any time without notice.</p>
<h3>3. User Conduct</h3>
<p>You agree to use ShapeMaster for personal, non-commercial purposes only. You must not attempt to decompile, reverse engineer, or disrupt the application services.</p>
<h3>4. Intellectual Property</h3>
<p>All content, including the game engine, design, and graphics, are the exclusive property of ShapeMaster Studio and protected by intellectual property laws.</p>
<h3>5. Limitation of Liability</h3>
<p>ShapeMaster is provided "as is" without any warranties. ShapeMaster Studio shall not be liable for any data loss, performance issues, or damages arising from the use of the app.</p>
<h3>6. Changes to Terms</h3>
<p>We may update these terms occasionally. Your continued use of the service after changes signifies your acceptance of the new terms.</p>
<a href="index.html" class="btn btn-blue">BACK TO HOME</a>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="footer-logo">SHAPE MASTER</div>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms of Service</a>
</div>
<p>© 2026 ShapeMaster Studio. All rights reserved.</p>
</div>
</footer>
</body>
</html>