-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
141 lines (135 loc) · 5.56 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/style.css" />
<link rel="icon" href="images/logo.jpg" />
<title>Skipero Limited</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="stylesheet" href="styles/events.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&family=Rancho&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="main">
<div class="nav">
<a href="index.html"> <p>SKIPERO LIMITED</p></a>
<div class="navcontent">
<a href="index.html"><p>Home</p></a>
<a href="services.html"><p>Services</p></a>
<a href="contact.html"><p>Contact</p></a>
</div>
<div class="navimg" onclick="showmenu()">
<svg
xmlns="http://www.w3.org/2000/svg"
height="1em"
viewBox="0 0 448 512"
>
<
<style>
svg {
fill: #ffde5a;
}
</style>
<path
d="M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 288zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160z"
/>
</svg>
</div>
</div>
<div class="navmob" id="menu">
<div class="navcontentmob">
<a href="index.html"><p>Home</p></a>
<hr class="linetop" />
<a href="services.html"><p>Services</p></a>
<hr class="linetop" />
<a href="contact.html"><p>Contact</p></a>
</div>
</div>
<div class="mainbody">
<div class="eventsleft">
<div class="eventslefttop">
<h1>Barbeque Party</h1>
<p>
Enjoy the magic of a juicy perfectly charred Steak, cooked to your
specific tastes. Don't like it charred we can just seal it and do
it perfectly to your tastes. A steak or a sausage, even a pita or
kebab! Or Original Gourmet; it is all your choice! Having all of
this we will offer you great deserts, like a Belgium Chocolate
Brownie with soft vanilla Ice-cream or anything else!
</p>
<hr class="linetop" />
<p>
We are in the business of creating unique and special events to
suit every occasions from relaxed stylish Wedding receptions,
bespoke garden cocktail parties, corporate events and more. We can
cater large events to small family gatherings. We tailor every
event event to match your individual desires and our dedicated
team are on hand to make sure it'll will be a day that lives long
in you and your guests memory.
</p>
<hr class="linetop" />
<p>
Plan your perfect event with our friendly and experienced staff.
Our experts are extremely attentive to your needs, especially
dedicated to help you create great menu and event that focus on
your style from Oriental to traditional, exotic to vegetarian and
gourmet. We will help you to create the right menu for your needs
at affordable prices.
</p>
</div>
<div class="eventsleftbottom">
<img src="images/bbq.png" alt="barbeque" />
</div>
</div>
<div class="eventsleft" id="bottomevents">
<div class="eventslefttop">
<h1>Catering</h1>
<p>
We offer mobile Pizza catering throughout Dublin City and further!
We bring delicious, authentic wood-fired Pizzas to you. Our custom
designed wood fired stone oven and pizza vans, plus our team of
skilled pizza chefs, enables us to add a theatrical centerpiece to
almost any outdoor event. Wow your guests!
</p>
<hr class="linetop" />
<p>
Using mobile pizza ovens, pizza vans and smaller portable ovens
our chefs hand-stretch, prepare and cook exceptional pizzas with a
friendly service – whatever the weather! Do you want to place an
order from our regular street food pitches, visit our restaurant
or enquire about us catering for your wedding or special event?
Get in touch today!
</p>
<hr class="linetop" />
<p>
We are happy to create a bespoke menu for any private catering
function, just let us know what you have in mind. We will arrive
at your venue and discretely set up our mobile pizzeria so you can
enjoy your party.
</p>
</div>
<div class="eventsleftbottom">
<img src="images/truck.jpeg" alt="barbeque" />
</div>
</div>
<div class="footer">
<h1>© SKIPERO LIMITED</h1>
<p>Ready To Serve</p>
<div class="socials">
<a
href="https://www.instagram.com/griancafe.ballymun/"
target="_blank"
><img src="images/instagram.png" alt="instagram"
/></a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>