forked from antoneliza/EXAM2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
50 lines (42 loc) · 1.6 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Online shop</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
<style>
< !-- @font-face {
font-family: Avenir LT Std;
src: url('AvenirLTStd-Black.otf');
}
</style>
</head>
<body>
<section class="menu">
<nav>
<a href="booking.html">Booking</a>
<a href="snacks&drinks.html">Snacks & Drinks</a>
<a href="index.html"><img src="images/logo.png" style="width: 7em; height: 6em; z-index: 100"></a>
<a href="gamescatalogue.html">Games catalogue</a>
<a href="shop.html">Shop</a>
</nav>
<div id="SoMeicons">
<a href="#"><img src="images/insta_icon.png"></a>
<a href="#"><img src="images/fb_icon.png"></a>
</div>
</section>
<img src="images/menuline.png" class="menuline">
<footer class="footer">
<br>
<a href="booking.html">Booking</a>
<a href="snacks&drinks.html">Snacks & Drinks</a>
<a href="gamescatalogue.html">Games catalogue</a>
<a href="shop.html">Shop</a>
<p>[email protected]</p>
<a href="#" class="footericons"><img src="images/insta_icon.png"></a>
<a href="#" class="footericons"><img src="images/fb_icon.png"></a>
</footer>
</body>
</html>