generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
178 lines (164 loc) · 6.18 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Soul & Surf local community for surfers in Bundoran, Ireland">
<meta name="keywords"
content="surf activity, surf community, local community, bundoran, ireland">
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Page Title -->
<title>Soul & Surf</title>
</head>
<body>
<header>
<!-- Logo links to home page -->
<a href="index.html">
<h1 id="logo">Soul & Surf</h1>
</a>
<!-- Navigation Menu -->
<nav>
<ul id="menu">
<li>
<a href="signup.html">Sign Up</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a class="active" href="index.html">Home</a>
</li>
</ul>
</nav>
</header>
<!-- Welcome Image -->
<section id="surf-effect">
<!-- Tuberider background image -->
<div id="surf-image"></div>
<!-- Introuduction text box over image -->
<div id="cover-text">
<h2>Soul & Surf</h2>
<h3>Bundoran Surf Improvement Community</h3>
</div>
</section>
<!-- About Us -->
<section>
<div id="about-us">
<h2>ABOUT US <i class="fas fa-users"></i></h2>
<p>
We are a local surf community located in Bundoran, Ireland's surf capital.
Our commitment is to bring people together to meet up for surf improvement exercises and activities on regular basis.
You will be part of a community of local surfers and volunteers willing to bring Bundoran surf to professional levels!
</p>
</div>
</section>
<!-- Why Ride With Us? -->
<section id="reasons-why">
<!-- Why Question Heading -->
<div id="why-heading">
<hr>
<h2>WHY RIDE WITH US?</h2>
<hr>
</div>
<!-- Panels Reasons -->
<div id="reasons-panels">
<div>
<h2>Balance <i class="fas fa-balance-scale"></i></h2>
<hr>
<p>
Slackline develop balance and stabilising strength that will result in improved posture and better endurance during surfing movements.
Helps create a new sense of body awareness, position and movement confidence.
</p>
</div>
<div>
<h2>Strength <i class="fas fa-dumbbell"></i></h2>
<hr>
<p>
Yoga For surfers, SurfYoga training helps prevent muscle imbalance.
Surfers spend most of their time paddling, so their shoulder, back and arm muscles are typically well developed.
</p>
</div>
<div>
<h2>Perform <i class="fas fa-chart-line"></i></h2>
<hr>
<p>
Pilates is an excellent way to improve your surfing. Not only does it develop the core strength needed to surf with more power and precision,
but it can also make your surfing technique far more consistent with less risk of injury.
</p>
</div>
<div>
<h2>Get Social <i class="fas fa-globe"></i></h2>
<hr>
<p>
After surfing coffee with local surfers, a place where you can arrange surfs together regardless of ability. Share pictures and experiences.
Ask questions and seek advice. You can meet new people and make new friends!
</p>
</div>
</div>
</section>
<!-- Meet Up Times and Locations -->
<section id="meetup-panel">
<div>
<h2>Strength <i class="fas fa-dumbbell"></i></h2>
<h3>Monday</h3>
<h3>Pilates</h3>
<h3>Bundoran Center</h3>
<h3>19:30</h3>
</div>
<div>
<h2>Perform <i class="fas fa-chart-line"></i></h2>
<h3>Tuesday</h3>
<h3>Surf Yoga</h3>
<h3>The Peak Beach</h3>
<h3>19:00</h3>
</div>
<div>
<h2>Balance <i class="fas fa-balance-scale"></i></h2>
<h3>Wednesday</h3>
<h3>Slackline</h3>
<h3>Park School</h3>
<h3>18:30</h3>
</div>
<div>
<h2>Recovery <i class="fas fa-om"></i></h2>
<h3>Saturday</h3>
<h3>Yoga</h3>
<h3>Bundoran Center</h3>
<h3>19:00</h3>
</div>
<div>
<h2>Social <i class="fas fa-coffee"></i></h2>
<h3>Sunday</h3>
<h3>Coffee</h3>
<h3>The Salty Fox</h3>
<h3>11:30</h3>
</div>
</section>
<!-- Footer -->
<footer>
<ul class="social-network">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"><i class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener"
aria-label="Visit our Youtube page (opens in a new tab)"><i class="fab fa-youtube-square"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- Font Awesome Script -->
<script src="https://kit.fontawesome.com/5aaf6a9662.js" crossorigin="anonymous"></script>
</body>
</html>