-
Notifications
You must be signed in to change notification settings - Fork 1
/
catering-and-booking.html
118 lines (94 loc) · 5.08 KB
/
catering-and-booking.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
<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">
<title>The Victoria Freehouse's catering company</title>
<link rel="stylesheet" href="index.css">
<script src="https://kit.fontawesome.com/a9f2e1d683.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<div class="topnav">
<a class = "logo-link" href="index.html">
<img class = "logo" height="90" src="images/logo.jpg" alt="Logo for Victoria Freehouse, silhouette of the queen">
</a>
<div id="myLinks">
<a class = "nav-links"href="index.html"> Home</a>
<a class = "nav-links" href="foodmenu.html" >Menu</a>
<a class = "nav-links"href="calendar.html"> Events & Calendar</a>
<a class = "nav-links"href="catering-and-booking.html" id ="selected" >Catering & Bookings</a>
<!-- <a href="contactus.html" >Contact Us</a> -->
</div>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</nav>
</header>
<main class="cateringMain">
<h1>We Offer a Full Range Of Catering </h1>
<h2>Catering Options</h2>
<ol>
<li>Off Site Parties</li>
<li>Wine, Beer and Scotch Tastings</li>
<li>Corporate Events </li>
<li>Happy Hours</li>
<li>Themed Parties</li>
<li>Karaoke</li>
<li>Private Rooms</li>
<li>Wedding After Parties</li>
<li>Wedding Brunch</li>
</ol>
<p>
Find out more on our <a class="crownDiningLinks" href = "https://www.crowndining.com/" target = "_blank"> catering site! </a>
<p>Contact Us At: <a class="crownDiningLinks" href="mailto: [email protected]">[email protected]</a> </p>
</p>
<div class="imageGallery">
<img class = "imageGalleryImg" src="images/cured-salmon.jpg" alt="A photo of cured salmon on a cracker">
<img class = "imageGalleryImg" src="./images/chicken-cacciatore_orig.jpg" alt="A plate of chicken cacciatore">
<img class = "imageGalleryImg" src="./images/icebox-cake.jpg" alt="A picture of icebox cake on a plate">
<img class = "imageGalleryImg" src="./images/mussel-paella_orig.jpg" alt="A large pot full of mussel paella">
<img class = "imageGalleryImg" src="./images/ravioli.jpg" alt="Handmade ravoli being made on a wooden table">
<img class = "imageGalleryImg" src="./images/moroccan-lamb_orig.jpg" alt="A spread of moroaccan lamb">
</div>
</main>
<!-- add social links -->
<footer>
<!-- <div class="col1">
<p>Your Neighborhood British Pub</p>
<p>Weekend Brunch 12-4pm</p>
<p>We are open Early for Premier League Matches</p>
</div> -->
<div class = "col2">
<div class="hours">
<p> Happy Hour: Tuesday - Friday 5-7</p>
<p>Hours</p>
<ul>
<li>CLOSED MONDAY</li>
<li>Tuesday-Thursday: 5-11</li>
<li>Friday: 5-12</li>
<li>Saturday: 12-12</li>
<li>Sunday: 12-10</li>
<li>Weekend Brunch, 12pm-4pm</li>
</ul>
</div>
<div class="contact">
<p>Contact: <br> <a href="tel:215-543-6089"> 215-543-6089</a> </p>
<p>Location:</p> <a target = "_blank" href="https://www.google.com/maps/place/The+Victoria+Freehouse/@39.9492263,-75.1444797,17z/data=!3m1!5s0x89c6c88f7ef94f4d:0x9ff82f15a1e3e558!4m12!1m6!3m5!1s0x89c6c88f79874489:0x3573a3a03709f8b6!2sThe+Victoria+Freehouse!8m2!3d39.9492263!4d-75.142291!3m4!1s0x89c6c88f79874489:0x3573a3a03709f8b6!8m2!3d39.9492263!4d-75.142291">
10 S Front St.
</a>
</div>
</div>
<div class = "col3">
<a href="mailto: [email protected]"><i class="far fa-envelope"></i></a>
<a href="https://www.facebook.com/TheVictoriaFreehouse"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/TVFHPhilly"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/TVFHPhilly/"><i class="fab fa-instagram"></i></a>
</div>
</footer>
</body>
<script src = "index.js"></script>
</html>