-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
159 lines (155 loc) · 4.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="TheBoatShed - Gallery" />
<title>Gallery - TheBoatShed</title>
<link rel="stylesheet" href="assets/css/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet" />
</head>
<body>
<header>
<div class="container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li>
<a
href="https://theboatshedpyrmont.com.au/wp-content/uploads/2024/05/ONLINE-MENU-21.05.24.pdf"
>Menu</a
>
</li>
<a href="index.html">
<img
src="assets/images/home-logo.png"
alt="TheBoatShed Logo"
class="logo" />
</a>
<li><a href="services.html">Services</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="gallery">
<div class="container">
<span class="section-title">Gallery</span>
<div class="grid">
<div class="grid-item">
<img
src="https://theboatshedpyrmont.com.au/wp-content/uploads/spotlight-insta/17924108639555212-m.jpg"
alt="Gallery Image 1"
class="gallery-image" />
</div>
<div class="grid-item">
<img
src="https://theboatshedpyrmont.com.au/wp-content/uploads/spotlight-insta/17980045654822014-m.jpg"
alt="Gallery Image 2"
class="gallery-image" />
</div>
<div class="grid-item">
<img
src="https://theboatshedpyrmont.com.au/wp-content/uploads/spotlight-insta/17959691129133254-m.jpg"
alt="Gallery Image 3"
class="gallery-image" />
</div>
<div class="grid-item">
<img
src="https://theboatshedpyrmont.com.au/wp-content/uploads/spotlight-insta/18013009585519865-m.jpg"
alt="Gallery Image 4"
class="gallery-image" />
</div>
<div class="grid-item">
<img
src="https://theboatshedpyrmont.com.au/wp-content/uploads/spotlight-insta/18282516826099725-m.jpg"
alt="Gallery Image 5"
class="gallery-image" />
</div>
<div class="grid-item">
<img
src="https://theboatshedpyrmont.com.au/wp-content/uploads/spotlight-insta/17903171621719448-m.jpg"
alt="Gallery Image 6"
class="gallery-image" />
</div>
<!-- <div class="grid-item">
<img
src="https://mtek3d.com/wp-content/uploads/2018/01/image-placeholder-500x500.jpg"
alt="Gallery Image 7"
class="gallery-image" />
</div>
<div class="grid-item">
<img
src="https://mtek3d.com/wp-content/uploads/2018/01/image-placeholder-500x500.jpg"
alt="Gallery Image 8"
class="gallery-image" />
</div>
<div class="grid-item">
<img
src="https://mtek3d.com/wp-content/uploads/2018/01/image-placeholder-500x500.jpg"
alt="Gallery Image 9"
class="gallery-image" />
</div> -->
</div>
</div>
</section>
</main>
<div id="image-popup" class="image-popup">
<span class="close">×</span>
<img class="popup-content" id="popup-img" />
</div>
<footer class="custom-footer">
<div class="footer-container">
<div class="footer-content">
<p>HEARD<br />ENOUGH?</p>
</div>
<div class="footer-contact">
<p class="footer-title">Contact us</p>
</div>
<div class="footer-arrow">
<a href="contact.html">→</a>
</div>
</div>
<div class="footer-details">
<div class="footer-brand">
<p>The agency for <br />impatient brands®</p>
</div>
<div class="footer-location">
<div>
<span class="location-title">BUENOS AIRES</span>
<p>
<a href="mailto:[email protected]"
>
</p>
<p>+54 11 6799 7949</p>
<p>Cabildo 1458 1st floor, Buenos Aires</p>
<p><a href="#">SEE ON MAP →</a></p>
</div>
</div>
<div class="footer-newsletter">
<p>WANT TO BE THE SMARTEST IN YOUR OFFICE?</p>
<p>
<a
class="newsletter-button"
href="#"
onclick="alert('Thank you for subscribing to our newsletter!')"
>SIGN UP FOR OUR NEWSLETTER →</a
>
</p>
<p>FOLLOW US</p>
<div class="footer-social">
<a href="#">Instagram</a>
<a href="#">Facebook</a>
</div>
</div>
</div>
</footer>
<script src="assets/js/scripts.js" defer></script>
</body>
</html>