-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (81 loc) · 4.16 KB
/
index.html
File metadata and controls
81 lines (81 loc) · 4.16 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
<!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="keyword" content="blarney cc, cycling club, cork, ireland">
<meta name="description" content="Cycling club for cyclists in and around Cork">
<link rel="stylesheet" href="assets/css/style.css">
<title>Blarney Cycling Club</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
</head>
<body>
<div class="main-container">
<header class="logo-image">
<a href="index.html"><img id="blarney-logo" src="assets/images/blarney_logo.webp" alt="Blarney cycling club logo"></a>
</header>
<nav id="nav-menu" class="nav-menu">
<ul>
<li>
<a href="index.html" class="active"> <i class="fas fa-home"></i> Home</a>
</li>
<li>
<a href="gallery.html"><i class="fas fa-image"></i> Gallery</a>
</li>
<li>
<a href="contact.html"><i class="fas fa-address-book"></i> Contact</a>
</li>
</ul>
</nav>
<div id="line1" class="line"></div>
<div id="hero-image" class="hero-image">
<img src="assets/images/Blarney_cyclist_winning_square.webp" alt="Blarney CC cyclist winning the race.">
</div>
<div class="about-box" id="about-box">
<h1>
About Blarney <span>CC</span>
</h1>
<p>
Established in 1886, Blarney Cycling Club is one of Ireland's oldest cycling clubs. We are primarily a road racing club with
multiple national champions among our ranks. We have riders from A1 through A4 and LC on our team.
</p>
<br>
<p>
If you wish to partake in a spin or If you want to move from LC to A1, hit us up and join the club.
</p>
<br>
<p>
Please contact us here through the <a href="contact.html"> contact</a> form or send a PM on our Facebook page.
</p>
</div>
<div id="line2" class="line"></div>
<footer class="footer-box">
<div class="copyright">
<p>© Blarney Cycling Club 2023</p>
</div>
<div id="social-networks" class="social-networks">
<ul>
<li>
<a class="social-link" id="facebook" href="https://www.facebook.com/Blarneycyclingclub" target="_blank" rel="noopener" aria-label="Visit Blarney cycling club's Facebook page (link opens in new tab)"><i class="fab fa-facebook-square"></i></a>
</li>
<li>
<a class="social-link" id="twitter" href="https://twitter.com/blarneycc" target="_blank" rel="noopener" aria-label="Visit our Twitter page (link opens in new tab)"><i class="fab fa-twitter-square"></i></a>
</li>
<li>
<a class="social-link" id="instagram" href="https://www.instagram.com/blarneycyclingclub/" target="_blank" rel="noopener" aria-label="Visit Blarney cycling club's Instagram page (link opens in new tab)"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a class="social-link" id="strava" href="https://www.strava.com/clubs/blarney-cc-5875" target="_blank" rel="noopener" aria-label="Visit Blarney cycling club's Strava page (link opens in new tab)"><i class="fab fa-strava"></i></a>
</li>
</ul>
</div>
<div id="inc21-logo" class="inc21-logo">
<img src="assets/images/inc21_logo_50px.webp" alt="Inc21 design logo">
</div>
</footer>
</div>
<!-- fontawsome script -->
<script src="https://kit.fontawesome.com/64b115579c.js" crossorigin="anonymous"></script>
</body>
</html>