-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.08 KB
/
Copy pathindex.html
File metadata and controls
57 lines (52 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>South London Gays (SLG) | Social Group</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="welcome">
<h2>Welcome to SLG</h2>
<p>Looking for a friendly social group for gays in the South London area? South London Gays (SLG) has provided a wide range of events and activities for its members for over 28 years.</p>
</section>
<section id="meetings">
<h3>Meetings</h3>
<p>Our main focus is monthly meetings with guest speakers on the second Tuesday of each month at a pub in Clapham, South London.</p>
<a href="events.html" class="btn">View Upcoming Speakers</a>
</section>
<section id="membership">
<h3>Membership</h3>
<p>Membership costs £6 per year (or £14 for those preferring paper bulletins). You do not have to live in South London to join.</p>
</section>
<section id="contact">
<h3>Contact Us</h3>
<p>If you would like to join or want further details, please contact us:</p>
<ul>
<li>Email: <a href="mailto:slgnews@aol.com">slgnews@aol.com</a></li>
<li>Phone: Terry (020 8674 5191) or Timothy (020 8767 0578)</li>
</ul>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 South London Gays. Last updated April 2024.</p>
</div>
</footer>
</body>
</html>