-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
111 lines (90 loc) · 4.18 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Metadata Start-->
<title>Strath Rowing</title>
<link rel="shortcut icon" href="Images/favicon.ico" type="image/x-icon">
<!-- Add social icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Chrome Address Bar Color-->
<meta name="theme-color" content="#8F0A37">
<!--Safari Status Bar Color-->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="author" content="Daniel Lowry">
<meta name="description"
content="Strathclyde University Boat Club. Est. 1967, is Strathclyde Universities student run rowing club, situated on the bank of the Clyde.">
<meta name="keywords"
content="subc, strathclyde, strath rowing, strath sports, strathclyde university, clyde, scottish rowing, scotland rowing, strathclyde rowing club, strathclyde boat club">
<!--Metadata End-->
<!--Stylesheets-->
<link rel="stylesheet" href="CSS/styles.css">
<link rel="stylesheet" href="CSS/NavStyles.css">
<link rel="stylesheet" href="CSS/FooterStyles.css">
</head>
<body>
<nav style="background: var(--accent-color)">
<div class="nav-logo">
<a href="index.html"><img src="Images/SUBC_Logo.svg" alt="SUBC Logo"></a>
</div>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="head.html">Head Race</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="committee.html">Committee</a></li>
<!--<li><a href="fundraising.html">Fundraising</a></li>-->
</ul>
</nav>
<main>
</main>
<footer>
<div class="footer-container">
<div class="footer-logo">
<a href="index.html"><img src="Images/SUBC_Logo.svg" alt="SUBC Logo"></a>
</div>
<div class="social-icons">
<ul>
<li>
<a href="https://www.facebook.com/SUBCRowing/" title="Like us on Facebook" target="_blank">
<i class="fa fa-facebook fa-2x" aria-hidden="true" style="color:white"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/subc_/" title="Follow us on Instagram" target="_blank">
<i class="fa fa-instagram fa-2x" aria-hidden="true" style="color:white"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCBXBmwKg8c5iQlhg6lo4VNg/"
title="Subscribe to us on YouTube" target="_blank">
<i class="fa fa-youtube fa-2x" aria-hidden="true" style="color:white"></i>
</a>
</li>
<li>
<a href="https://twitter.com/SUBC_Rowing" title="Follow us on Twitter" target="_blank">
<i class="fa fa-twitter fa-2x" aria-hidden="true" style="color:white"></i>
</a>
</li>
</ul>
</div>
<div class="contact">
<h2>Contact Us</h2>
<p>Sports Union, Level 7,<span>90 John St,</span>Glasgow, <span>G1 1JH</span></p>
<p>[email protected]</p>
</div>
</div>
</footer>
<!--JQuery-->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!--parallax.js-->
<script src="JS/parallax.min.js"></script>
</body>
</html>