forked from PamudaUposath/Creators-Space-GroupProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtandc.html
More file actions
103 lines (94 loc) · 2.87 KB
/
tandc.html
File metadata and controls
103 lines (94 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Terms and Conditions – Creators-Space</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background: #fdfdfd;
font-family: 'Segoe UI', sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 640px;
margin: 48px auto;
padding: 32px;
background: #fff;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
color: #222;
}
h2 {
font-size: 1.25rem;
margin-top: 1.5em;
margin-bottom: 0.5em;
color: #333;
}
p, li {
color: #444;
font-size: 1rem;
}
ul {
margin-left: 1.5em;
}
.back-link {
display: inline-block;
margin-bottom: 20px;
color: #277af6;
text-decoration: none;
font-size: 1rem;
}
.back-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<a href="signup.html" class="back-link">← Back to Sign Up</a>
<h1>Terms & Conditions</h1>
<p><strong>Last updated:</strong> August 8, 2025</p>
<h2>1. User Responsibilities</h2>
<ul>
<li>You must provide accurate, complete, and current information during registration.</li>
<li>You are responsible for keeping your account credentials secure and for all activities on your account.</li>
</ul>
<h2>2. Acceptable Use</h2>
<ul>
<li>Do not use this website for unlawful, harmful, or abusive purposes.</li>
<li>Do not upload content with viruses, malware, or any material that violates the rights of others.</li>
</ul>
<h2>3. Privacy</h2>
<p>We respect your privacy. Please review our <a href="#">Privacy Policy</a> for more information on how your data is handled.</p>
<h2>4. Account Termination</h2>
<ul>
<li>We reserve the right to suspend or delete your account if you violate these terms, with or without notice.</li>
</ul>
<h2>5. Intellectual Property</h2>
<ul>
<li>All website content and services are the property of Creators-Space unless stated otherwise. Do not copy or distribute our materials without permission.</li>
</ul>
<h2>6. Changes to Terms</h2>
<ul>
<li>We may update these Terms & Conditions at any time. Continued use after changes means you accept the new terms.</li>
</ul>
<h2>7. Liability</h2>
<ul>
<li>We are not liable for any damages or losses arising from your use of the website or its services.</li>
</ul>
<h2>8. Governing Law</h2>
<ul>
<li>These Terms & Conditions are governed by the laws of Your Country/State.</li>
</ul>
<p>
<strong>By signing up, you indicate agreement to these Terms and Conditions.</strong>
</p>
</div>
</body>
</html>