-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
76 lines (68 loc) · 2.53 KB
/
contact.html
File metadata and controls
76 lines (68 loc) · 2.53 KB
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
<!DOCTYPE html>
<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">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="shortcut icon" type="image/png" href="bon-appetit.png">
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<title>Bon Appetit - Contact</title>
</head>
<body>
<!-- Navigation Bar -->
<div class="nav-bar">
<a href="index.html" class="option">About</a>
<a href="menu.html" class="option">Menu</a>
<a href="index.html" class="brand-name">Bon Appetit</a>
<a href="booking.html" class="option">Booking</a>
<a href="contact.html" class="option">Contact</a>
</div>
<!-- End Navigation Bar -->
<!--Main Pic-->
<div class="container main-pic" data-aos="fade-up">
<img src="/map.jpg" alt="Map" width="100%" height="580">
</div>
<!--End Main Pic-->
<!--About-->
<div class="container about" data-aos="fade-up">
<p>The flavours of the present season are abundant on our menu. We constantly work hard to bring you the best:
premium ingredients that have been carefully and ethically selected, then freshly prepared by our fantastic chefs. We have gone above and beyond to elevate classic French dishes this Winter, and it is no exception.</p>
</div>
<!--End About-->
<!--Contact-->
<div class="container contact" data-aos="fade-up">
<h1>Contact Us</h1>
<p>
<strong>Address:</strong><br>
777 AVEBURY<br>
MILTON KEYNES NW7 777
</p>
<p>
<strong>Email:</strong><br>
<a href="mailto:BONAPPETIT@GMAIL.COM">BONAPPETIT@GMAIL.COM</a>
</p>
<p>
<strong>Phone:</strong><br>
<a href="tel:+4401907777777">01907 777777</a>
</p>
<p>
<strong>Opening Times:</strong><br>
MONDAY TO SATURDAY 12PM to 11PM<br>
SUNDAY 12PM to 10PM (“SUNDAY MENU” AVAILABLE UNTIL 5PM)
</p>
<p>
<strong>Service Times:</strong><br>
DINING 12NOON TO 10PM
</p>
<p>
CS Cristian Sclifos © 2021 All rights reserved.
</p>
</div>
<!--End Contact-->
<script>
AOS.init();
</script>
</body>
</html>