-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
82 lines (78 loc) · 3.76 KB
/
Copy pathevents.html
File metadata and controls
82 lines (78 loc) · 3.76 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
79
80
81
82
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Current Diary | 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="diary-intro">
<h2>Current Diary</h2>
<p>Our main meetings take place on the second Tuesday of each month. We also host a variety of social outings including theatre trips, restaurant visits, and coffee evenings.</p>
</section>
<section id="upcoming-events">
<h3>Upcoming Programme</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;">Date</th>
<th style="padding: 12px; border: 1px solid #ddd;">Event / Speaker</th>
<th style="padding: 12px; border: 1px solid #ddd;">Location</th>
</tr>
</thead>
<tbody>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">14 April 2026</td>
<td style="padding: 12px; border: 1px solid #ddd;">Monthly Meeting: Guest Speaker (TBA)</td>
<td style="padding: 12px; border: 1px solid #ddd;">Clapham Pub</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">22 April 2026</td>
<td style="padding: 12px; border: 1px solid #ddd;">Theatre Visit: Contemporary Drama</td>
<td style="padding: 12px; border: 1px solid #ddd;">South London Theatre</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">12 May 2026</td>
<td style="padding: 12px; border: 1px solid #ddd;">Monthly Meeting: Local History Talk</td>
<td style="padding: 12px; border: 1px solid #ddd;">Clapham Pub</td>
</tr>
<tr>
<td style="padding: 12px; border: 1px solid #ddd;">20 May 2026</td>
<td style="padding: 12px; border: 1px solid #ddd;">Restaurant Evening</td>
<td style="padding: 12px; border: 1px solid #ddd;">Brixton Village</td>
</tr>
</tbody>
</table>
</section>
<section id="regular-activities">
<h3>Other Regular Activities</h3>
<ul>
<li><strong>Cinema & Arts:</strong> Regular trips to local independent cinemas.</li>
<li><strong>Sports:</strong> Casual tennis matches and walking groups.</li>
<li><strong>Socials:</strong> DVD evenings and tea parties hosted in members' homes.</li>
<li><strong>Museum Visits:</strong> Guided tours of London museums and galleries.</li>
</ul>
</section>
</main>
<footer>
<div class="container">
<p>© 2026 South London Gays. Last updated April 2026.</p>
</div>
</footer>
</body>
</html>