-
Notifications
You must be signed in to change notification settings - Fork 2
/
privacy-policy.html
87 lines (74 loc) · 3.3 KB
/
privacy-policy.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>Privacy Policy</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>Privacy Policy</h1>
</div>
<div class="card">
<div class="card-body">
<h3>1. Information Collection</h3>
<p>We collect minimal user information, such as IP addresses and browser details, for analytical purposes. No personally identifiable information (PII) is collected unless specified in a form.</p>
<h3>2. Use of Information</h3>
<p>The collected data is used only for the purpose of improving the service and providing a better user experience. We do not share user data with third parties.</p>
<h3>3. Cookies</h3>
<p>We use cookies to enhance the user experience and keep track of user preferences. You can choose to disable cookies in your browser settings.</p>
<h3>4. Data Security</h3>
<p>We take appropriate measures to safeguard the information we collect and ensure its security. However, no method of transmission over the internet is 100% secure.</p>
<h3>5. Third-Party Links</h3>
<p>Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of these external sites.</p>
<h3>6. Changes to the Privacy Policy</h3>
<p>We may update this privacy policy periodically. Changes will be posted here, and your continued use of the website signifies acceptance of the changes.</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>