-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
52 lines (46 loc) · 2.16 KB
/
privacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - The Basement</title>
<style>
body {
font-family: 'Times New Roman', Times, serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #222222;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #eeeeee;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p>Effective Date: 6/27/24</p>
<h2>1. Introduction</h2>
<p>Welcome to The Basement. We are committed to respecting your privacy and ensuring that your personal information is protected. This Privacy Policy explains how we handle your personal information when you use our website.</p>
<h2>2. Information We Do Not Collect</h2>
<p>We do not collect any personal information from our users. This includes, but is not limited to, names, email addresses, phone numbers, and payment information.</p>
<h2>3. Cookies</h2>
<p>We do not use cookies or any other tracking technologies to collect information about your browsing activities on our website.</p>
<h2>4. Third-Party Services</h2>
<p>We do not use any third-party services that collect personal information from our users.</p>
<h2>5. Changes to This Privacy Policy</h2>
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page with an updated effective date. We encourage you to review this Privacy Policy periodically to stay informed about how we are protecting your information.</p>
<h2>6. Contact Us</h2>
<p>If you have any questions or concerns about this Privacy Policy, please contact us at [Insert Contact Information].</p>
</div>
</body>
</html>