-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (142 loc) · 5.82 KB
/
index.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>N&P Badminton Club</title>
<!--meta tages for search engines-->
<meta name="description"
content="Badminton. Club for badminton, London, UK. Social club, junior and adult coaching. wembley and coach">
<meta name="keywords" content="badminton, play badminton, badminton club, playerss, London, UK, sport, exercise, coaching, coach badminton, juniors coaching, adult coaching">
<!--Favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<!-- Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!--add semantic elemets to html body-->
<!--Header-->
<header>
<div class="logo-container">
<div class="logoimageDiv">
<img src="assets/images/logo.JPG" id="logoimage" alt="Logo">
</div>
<h1 id="logo" >N&P Badminton</h1>
<!-- </div> -->
<!-- </a> -->
<input type="checkbox" id="nav-toggle" name="nav-toggle">
<label for="nav-toggle" class="nav-toggle-label"><i class="fa-solid fa-bars"></i></label>
<!--Navigation section-->
<nav>
<ul id="menu">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!--Main-->
<main>
<section id="shuttle">
<div id="cover-text">
<h2>Play Badminton & Coaching</h2>
</div>
</section>
<section id="reasons">
<h2>Why Join us?</h2>
<div id="benefits">
<div id="benefits-toplay">
<div>
<h3>Friendly <i class="fa-solid fa-people-group"></i></h3>
<hr>
<p>Offering regular play sessions for intermediate to advanced players, fosering a welcoming atmostphere.</p>
</div>
<div>
<h3>Social <i class="fa-solid fa-face-smile"></i></h3>
<hr>
<p>Connect with like-minded players who share your passion for badminton!</p>
</div>
</div>
<div id="benefits-coaching">
<div>
<h3><i class="fa-solid fa-children"></i> Junior coaching </h3>
<hr>
<p>Regular junior coaching sessions available to develop young talents, ages from 6 to 16.</p>
</div>
<div>
<h3><i class="fa-solid fa-user-group"></i> Adult coaching </h3>
<hr>
<p>Available upon request, help refine your skills and enjoy competitive play!</p>
</div>
</div>
<div id="benefits-image">
<div id="circle-cover-bg"></div>
</div>
</div>
</section>
<!-- Meetup Times section -->
<section id="meetups">
<!--use class selector to hide the heading for h2 on html so that it can still be searched by google-->
<h2 class="hidden-heading">Meet-up Times</h2>
<div id="times">
<div>
<h3>Social Club <i class="fa-solid fa-face-smile"></i></h3>
<p>Tuesday - Weekly</p>
<p> Intermediate to advanced</p>
<p>Lycée School</p>
<p>20:00 -22:00</p>
</div>
<div>
<h3> Junior Coaching <i class="fa-solid fa-children"></i></h3>
<p>Thursday</p>
<p>Beginners</p>
<p>Bentley Wood School</p>
<p>17:00 - 18:00</p>
</div>
<div>
<h3> Junior Coaching <i class="fa-solid fa-children"></i></h3>
<p>Thursday</p>
<p>Intermediate</p>
<p>Bentley Wood School</p>
<p>18:00 - 19:30</p>
</div>
<div>
<h3> Junior Coaching <i class="fa-solid fa-children"></i></h3>
<p>Saturday</p>
<p>Beginners</p>
<p>Cedars Youth Centre</p>
<p>14:00 - 15:30</p>
</div>
<div>
<h3>Training <i class="fa-solid fa-thumbs-up"></i></h3>
<p>Sunday</p>
<p>By invitation only</p>
<p>Cedars Youth Centre</p>
<p>14:00 - 16:00</p>
</div>
</div>
</section>
</main>
<!--Footer-->
<footer>
<ul id="social-networks">
<li>
<a href="https://www.facebook.com/" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)">
<i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="https://www.instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)">
<i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
<h6 id="footer">©CodingwithLove</h6>
</footer>
<!-- Font Awesome kit -->
<script src="https://kit.fontawesome.com/00dc1bd44c.js" crossorigin="anonymous"></script>
</body>
</html>