generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.html
100 lines (100 loc) · 4.68 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
<!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="A website that serves as an archive of photos and information about Curracloe, Co Wexford.">
<link rel="stylesheet" href="assets/css/style.css">
<link href="assets/images/favicon.ico" rel="icon" type="image/x-icon"/>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/11a128cecc.js" crossorigin="anonymous"></script>
<title>Curracloe Chronicles</title>
</head>
<body>
<!-- navbar -->
<header class="header">
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html" class="active">Gallery</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</header>
<h1 class="gallery-heading">Take a look at the memories we've found so far</h1>
<div class="container">
<!-- heading text -->
<ul class="image-gallery">
<li>
<img src="assets/images/forest.jpg" alt="A path through a forest." />
<div class="overlay"><span>Raven Plantation</span></div>
</li>
<li>
<img src="assets/images/frank-murphy.webp" alt="A black and white picture of a man." />
<div class="overlay"><span>Frank 'The Blaker' Murphy.
Courtesy of his grand niece Jayne Paradis, Canada.</span></div>
</li>
<li>
<img src="assets/images/hotel-curracloe.webp" alt="An old photo of a hotel." />
<div class="overlay"><span>Curracloe Tavern.
Courtesy of Hotel Curracloe</span></div>
</li>
<li>
<img src="assets/images/irish-dancers.webp" alt="A group of young female Irish dancers gathered with trophies" />
<div class="overlay"><span>A talented group of Irish dancers.
Courtesy of Curracloe National School.</span></div>
</li>
<li>
<img src="assets/images/saving-private-ryan.webp" alt="Ballinesker beach with film set equipment" />
<div class="overlay"><span>'Saving Private Ryan' set Ballinesker Beach.</span></div>
</li>
<li>
<img src="assets/images/strand-hotel.webp" alt="An old photo of the Strand Hotel" />
<div class="overlay"><span>A photograph of the sea facing side of The Strand Hotel, Curracloe. Courtesy of Stanley Keane.</span></div>
</li>
<li>
<img src="assets/images/public-speaking.webp" alt="A man standing between two women holding trophies." />
<div class="overlay"><span>County Public Speaking Champions. Mid 70s. Susan Duggan, Brian McKenna and Kathleen Murphy.</span></div>
</li>
<li>
<img src="assets/images/yellow-road-team.webp" alt="Ten men holding trophies as a team." />
<div class="overlay"><span>Yellow Road Horseshoes Team. Courtesy of Paula Hearne.</span></div>
</li>
<li>
<img src="assets/images/jimmy-howlin.webp" alt="A young man standing with a horse outside of a bar." />
<div class="overlay"><span>The late Jimmy Howlin, pictured in 1962, outside The River Bar, Curracloe.
Courtesy of Annie Howlin.</span></div>
</li>
</ul>
</div>
<br>
<!-- social media -->
<footer class="footer">
<div id="socials">
<ul>
<li>
<a href="https://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://twitter.com" target="_blank" rel="noopener" aria-label="Visit our Twitter page (opens in a new tab)"><i class="fa-brands fa-twitter"></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="fa-brands fa-instagram"></i></a>
</li>
</ul>
</div>
<!-- copyright -->
<div class="copyright">
<p>Copyright ©2022 Grace McKenna</p>
</div>
<!-- footer menu -->
<div class="bottom-menu">
<ul id="footer-menu">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html" class="active">Gallery</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</footer>
<a href="#" class="top-button">Back to Top <i class="fa-solid fa-arrow-up"></i></a>
</body>
</html>