-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
120 lines (117 loc) · 3.1 KB
/
about.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
<!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 - About Us" />
<title>About Us - TheBoatShed</title>
<link rel="stylesheet" href="assets/css/styles.css" />
</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="about-section">
<span class="section-title">About Us</span>
<div class="container about-container">
<div class="about-image">
<img
src="./assets/images/hero-main.jpg"
alt="About Us Image" />
</div>
<div class="about-text">
<div class="about-info">
<span class="info-title">Dine In.</span>
<p>Book a table online so we know to expect you.</p>
</div>
<div class="about-info">
<span class="info-title">Take Out.</span>
<p>
Choose from out selection, and we'll pack it up
for you.
</p>
</div>
<div class="about-info">
<span class="info-title">Pick up.</span>
<p>
Call or message ahead, and we'll have your order
ready.
</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>