-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
64 lines (53 loc) · 3.48 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
<!DOCTYPE html>
<!-- Used resources: fotorama !-->
<html lang="en">
<head>
<title>TechBites Malta</title>
<link rel="stylesheet" href="css.css">
<link rel="stylesheet" href="gallery.css">
<link rel="icon" type="image/x-icon" href="img/BannerLogo.png">
<!-- jQuery 1.8 or later, 33 KB -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Fotorama from CDNJS, 19 KB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.js"></script>
</head>
<body>
<div id="container">
<nav>
<ul>
<li>
<a href="index.html">Home</a>
<a href="bookings.html">Bookings</a>
<a href="gallery.html">Gallery</a>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
<section class="photobg">
<section class="mainGallery">
<div class="fotorama" data-nav="thumbs" data-transition="dissolve" data-arrows="false" data-loop="true" data-width="1280" data-height="720">
<!-- <img src="img/" data-caption=""> : Copy-Paste to make things easier !-->
<img src="img/outside.jpg" data-caption="The outside of our ultra-clean, fancy, futuristic establishment.">
<img src="img/inside1.jpg" data-caption="Our excquisite Events & Party area, where pre-booked guests can host all forms of events!">
<img src="img/inside2.jpg" data-caption="We specialise in only the best experience here at TechBites, just look at the lovely ambience of this area!">
<img src="img/inside3.jpg" data-caption="The inside, adult area where the best cocktails on the island can be ordered.">
<img src="img/inside4.jpg" data-caption="Our nightclub suite, where your dreams will come true.">
<img src="img/seasideview.jpg" data-caption="The claustrophobic inside too much for you? Come outside to experience the lovely fresh air and breathtaking view.">
<img src="img/food1.png" data-caption="Our best fish dish, cooked perfectly to preserve the blueness of the skin while still being safe to eat.">
<img src="img/food2.png" data-caption="Our exquisitely made Wagyu A5 steak, shipped straight from japan.">
<img src="img/food3.png" data-caption="Our drool-inducing desserts, the most amazing end to a great meal.">
<img src="img/food4.jpg" data-caption="Western dishes not your style? How about something straight out of Tokyo?">
<img src="img/menu.jpg" data-caption="Our Interactive Menus are sure to catch your eye and show you something you'd love to eat.">
<img src="img/chef1.jpg" data-caption="Our expert chefs, ready to cook you the best meals!">
<img src="img/chef2.jpg" data-caption="Just look how clean they keep their environment-">
</div>
</section>
</section>
<br>
</div>
</body>
<footer class="footer">
<h2>© TechBites 2023 - by Gabriel Jackson</h2>
</footer>
</html>