-
Notifications
You must be signed in to change notification settings - Fork 2
/
terms.html
87 lines (74 loc) · 3.45 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms and Conditions</title>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./src/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./src/images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto Mono', monospace;
background-color: #f4f4f9;
}
.container {
max-width: 1000px;
padding-top: 30px;
}
.header {
margin-bottom: 40px;
}
h1 {
color: #333;
}
.footer {
margin-top: 40px;
text-align: center;
font-size: 0.9rem;
color: #555;
}
.footer a {
color: #28a745;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="header text-center">
<h1>Terms and Conditions</h1>
</div>
<div class="card">
<div class="card-body">
<h3>1. Acceptance of Terms</h3>
<p>By accessing and using this website, you agree to comply with the terms and conditions outlined below. If you disagree with any part of the terms, you must cease using the website.</p>
<h3>2. Use of Service</h3>
<p>You are granted a non-exclusive, non-transferable, revocable license to access and use the code editor provided on this website. The tool is for personal and educational use only.</p>
<h3>3. User Responsibilities</h3>
<p>Users are responsible for the content they create and share using the code editor. The platform should not be used for illegal activities, harmful behavior, or sharing offensive materials.</p>
<h3>4. Intellectual Property</h3>
<p>All content and code on this website are protected by copyright laws. You agree not to copy, reproduce, or distribute any content without proper authorization.</p>
<h3>5. Limitation of Liability</h3>
<p>We do not guarantee the accuracy, reliability, or functionality of the code editor. You use the tool at your own risk and we are not liable for any loss or damage resulting from the use of this website.</p>
<h3>6. Changes to Terms</h3>
<p>We reserve the right to modify these terms at any time. Changes will be posted on this page, and continued use of the website constitutes acceptance of the updated terms.</p>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>© 2024 Tholumuzi. <a href="https://tholumuzi.co.za">All rights reserved.</a></p>
</div>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>