-
Notifications
You must be signed in to change notification settings - Fork 2
/
disclaimer.html
103 lines (86 loc) · 4.9 KB
/
disclaimer.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
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Disclaimer - Online Code Editor</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">
<!-- Meta Tags for SEO -->
<meta name="description" content="Read the disclaimer for the Online Code Editor regarding usage, accuracy, and liability.">
<meta name="keywords" content="disclaimer, online code editor, usage terms, legal notice">
<meta name="author" content="Tholumuzi Khuboni">
<meta name="robots" content="index, follow">
<!-- Open Graph Meta Tags for Social Media Sharing -->
<meta property="og:title" content="Disclaimer - Online Code Editor">
<meta property="og:description" content="Read the disclaimer regarding the use of the Online Code Editor, including limitations of liability and content accuracy.">
<meta property="og:image" content="src/images/image.png">
<meta property="og:url" content="https://editor.tholumuzi.co.za/disclaimer.html">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Disclaimer - Online Code Editor">
<meta name="twitter:description" content="Legal disclaimer about the use of the Online Code Editor.">
<meta name="twitter:image" content="src/images/image.png">
<meta name="twitter:url" content="https://editor.tholumuzi.co.za/disclaimer.html">
<!-- 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: 1200px;
padding-top: 30px;
}
.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>Disclaimer</h1>
<p class="lead">Important legal information regarding the use of this Online Code Editor</p>
</div>
<div class="row">
<div class="col-md-12">
<h3>1. Introduction</h3>
<p>By using this Online Code Editor (the "Service"), you agree to comply with the following disclaimer. If you do not agree with any part of this disclaimer, you should refrain from using this Service.</p>
<h3>2. No Warranty</h3>
<p>The Online Code Editor is provided "as is" without any warranties or representations of any kind, express or implied. We do not guarantee that the Service will be free from errors, interruptions, or defects. You use the Service at your own risk.</p>
<h3>3. Limitation of Liability</h3>
<p>In no event shall Tholumuzi Khuboni or any associated parties be liable for any damages arising out of or in connection with your use of the Online Code Editor, including but not limited to loss of data, business interruptions, or any other loss.</p>
<h3>4. Usage</h3>
<p>The Online Code Editor is intended for personal and educational use only. You agree not to use the Service for any illegal activities or to violate any laws or regulations.</p>
<h3>5. Accuracy of Content</h3>
<p>While we strive for accuracy, the content provided by the Service may not always be accurate, complete, or up to date. We are not responsible for the accuracy or validity of any content generated through the use of the Service.</p>
<h3>6. Modifications</h3>
<p>We reserve the right to modify, suspend, or discontinue the Service at any time without notice. We are not responsible for any modifications to the Service or any loss of data that may occur as a result.</p>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>© 2024 Tholumuzi. <a href="https://tholumuzi.co.za">All rights reserved.</a></p>
</div>
<!-- Bootstrap JS -->
<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>