-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (134 loc) · 3.81 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
<!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 - Fresh Seafood, Unforgettable Taste" />
<title>TheBoatShed</title>
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<header>
<div class="container">
<nav>
<ul id="navbar">
<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="hero overlay">
<p class="hero-title">Fresh Seafood, Unforgettable Taste</p>
<button
onclick="window.location.href='https://www.opentable.com.au/r/the-boatshed-pyrmont-reservations-pyrmont?restref=167816&lang=en-AU&ot_source=Restaurant%20website'">
Book a Table
</button>
<a href="#featured-dishes" class="arrowDown-white"></a>
</section>
<section id="featured-dishes" class="featured-dishes">
<div class="container">
<span class="section-title">Featured Dishes</span>
<div class="dishes">
<div class="dish">
<img
src="https://mtek3d.com/wp-content/uploads/2018/01/image-placeholder-500x500.jpg"
alt="Dish 1" />
<span class="dish-title">Grilled Salmon</span>
<p>
Delicious grilled salmon served with fresh
vegetables.
</p>
</div>
<div class="dish">
<img
src="https://mtek3d.com/wp-content/uploads/2018/01/image-placeholder-500x500.jpg"
alt="Dish 2" />
<span class="dish-title">Lobster Bisque</span>
<p>
A rich and creamy lobster bisque that will
delight your taste buds.
</p>
</div>
<div class="dish">
<img
src="https://mtek3d.com/wp-content/uploads/2018/01/image-placeholder-500x500.jpg"
alt="Dish 3" />
<span class="dish-title">Seafood Platter</span>
<p>
A variety of fresh seafood served with dipping
sauces.
</p>
</div>
</div>
</div>
</section>
</main>
<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"></script>
</body>
</html>