-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
74 lines (70 loc) · 3.17 KB
/
contact.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/about-section.css">
<link rel="stylesheet" href="./css/nav-bar.css">
<link rel="icon" href="./images/favicon.ico" type="image/x-icon">
<script src="./js/navbar.js" defer></script>
<meta name="format-detection" content="telephone=no">
</head>
<body>
<header>
<img src="./images/galleywood-header.png" alt="Picture of Galleywood">
</header>
<nav>
<a href="#home">Home</a>
<a href="./contact.html">Contact</a>
<div class="dropdown">
<button class="dropbtn">Teams</button>
<div class="dropdown-content">
<a href="https://www.tabletennis365.com/Chelmsford/Results/Team/Statistics/Winter_2024-25/Division_1/Galleywood_A"
target="_blank">Division 1, A Team</a>
<a href="https://www.tabletennis365.com/Chelmsford/Results/Team/Statistics/Winter_2024-25/Division_2/Galleywood_B"
target="_blank">Division 2, B Team</a>
<a href="https://www.tabletennis365.com/Chelmsford/Results/Team/Statistics/Winter_2024-25/Division_3/Galleywood_C"
target="_blank">Division 3, C Team</a>
<a href="https://www.tabletennis365.com/Chelmsford/Results/Team/Statistics/Winter_2024-25/Division_4/Galleywood_D"
target="_blank">Division 4, D Team</a>
<a href="https://www.tabletennis365.com/Chelmsford/Results/Team/Statistics/Winter_2024-25/Division_5/Galleywood_E"
target="_blank">Division 5, E Team</a>
</div>
</div>
</nav>
<div class="about">
<div id="contact-div">
<div id="contact-header">
<h2>Key Contacts</h2>
</div>
<p>If you are a new member looking to join the club, please reach out to one of the following people
below (Please note - we are currently an adults only club as we do not currently have a welfare officer.
Juniors should enquire at Chelmsford TTC)</p>
</div>
<div class="contact-container">
<div id="contact-info1">
<h2>Chairman</h2>
<p style="text-decoration: underline;">James Hicks</p>
<p>[email protected]</p>
<p>07966150196</p>
</div>
<div id="contact-info1">
<h2>Secretary</h2>
<p style="text-decoration: underline;">Bryn Thomas</p>
<p>[email protected]</p>
<p>07972930122</p>
</div>
<div id="contact-info2">
<h2>Treasurer</h2>
<p style="text-decoration: underline;">Colin Blore</p>
<p>[email protected]</p>
<p>07825569228</p>
</div>
</div>
</div>
<div id="footer">
<p>© Copyright :: Galleywood Table Tennis Club :: Affiliated with Chelmsford Table Tennis League</p>
</div>
</body>
</html>