-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.html
73 lines (71 loc) · 2.3 KB
/
book.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
<!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="style.css" />
<link rel="icon" href="logo.jpg" />
<title>Grian Cafe</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<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">
<img src="logo.jpg " alt="logo" />
</a>
<div class="navcontent">
<a href="Menu.html"><p>Menu</p></a>
<a href="events.html"><p>Events</p></a>
<a href="book.html"><p>Book</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="menu.html"><p>Menu</p></a>
<hr class="linetop" />
<a href="events.html"><p>Events</p></a>
<hr class="linetop" />
<a href="book.html"><p>Book</p></a>
<hr class="linetop" />
<a href="contact.html"><p>Contact</p></a>
</div>
</div>
<div class="mainbody">
<div class="footer">
<h1>© Grian Cafe</h1>
<p>Ready To Serve</p>
<div class="socials">
<a href="https://www.instagram.com/griancafe.ballymun/"
><img src="instagram.png" alt="instagram"
/></a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>