-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
78 lines (73 loc) · 3.41 KB
/
Copy pathprivacy.html
File metadata and controls
78 lines (73 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | South London Gays</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>South London Gays</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="events.html">Current Diary</a></li>
<li><a href="speakers.html">Previous Speakers</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section id="privacy-intro">
<h2>Privacy Policy</h2>
<p>South London Gays (SLG) is committed to protecting your privacy. This policy explains how we collect and use your personal information.</p>
</section>
<section id="data-usage">
<h3>How We Use Your Data</h3>
<table style="width:100%; border-collapse: collapse; margin-top: 20px;">
<thead>
<tr style="background-color: #2c3e50; color: white; text-align: left;">
<th style="padding: 12px; border: 1px solid #ddd;">Data Type</th>
<th style="padding: 12px; border: 1px solid #ddd;">Purpose</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;"><strong>Name & Contact Details</strong></td>
<td style="padding: 12px; border: 1px solid #ddd;">To manage membership and send group bulletins.</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;"><strong>Payment Info</strong></td>
<td style="padding: 12px; border: 1px solid #ddd;">To process annual membership fees.</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;"><strong>Cookies</strong></td>
<td style="padding: 12px; border: 1px solid #ddd;">To improve website performance and security.</td>
</tr>
</tbody>
</table>
</section>
<section id="policy-details">
<h3>Key Information</h3>
<ul>
<li><strong>No Sharing:</strong> We never sell or share your data with third-party marketing companies.</li>
<li><strong>Data Access:</strong> You can request a copy of the information we hold about you at any time.</li>
<li><strong>Security:</strong> We take reasonable steps to keep your contact details safe and updated.</li>
<li><strong>Retention:</strong> We only keep your data for as long as you remain a member of the group.</li>
</ul>
</section>
<section id="contact-privacy">
<h3>Questions?</h3>
<p>If you have any concerns about your data, please email us at <a href="mailto:slgnews@aol.com">slgnews@aol.com</a>.</p>
</section>
</main>
<footer>
<div class="container">
<p>© 2026 South London Gays. Last updated April 2026.</p>
</div>
</footer>
</body>
</html>