-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrest.html
More file actions
67 lines (64 loc) · 2.99 KB
/
rest.html
File metadata and controls
67 lines (64 loc) · 2.99 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
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="restaurant.js"></script>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1.0">
<link rel="stylesheet" href="restaurant.css">
</head>
<body class='main'>
<section id="home">
<div class='content'>
<h1 style="color: rgb(3, 182, 128);">THE FRENCH GOURMET</h1>
<p style='color: rgb(26, 117, 64);' >Une oasis de plaisir</p>
</div>
</section>
<section id="order" style='margin-top:100vh'>
<div class='content'>
<h1 style='color: rgb(219, 219, 43);'>INDOOR SITTING AREA</h1>
<p style='color: rgb(138, 138, 9);'>enjoy with family and friends</p>
</div>
</section>
<section id="menu" style='margin-top:100vh' >
<div class='content'>
<h1 style='color: rgb(9, 11, 138);'>MENUS</h1>
<!-- <div class="row">
<div class="column">
<img src="https://images.unsplash.com/photo-1522248105696-9625ba87de6e?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=967&q=80" style="width: 100%;">
</div>
<div class="column">
<img src="https://images.unsplash.com/photo-1607403218119-83b4df4c0959?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80" style="width: 100%;">
</div>
<div class="column">
<img src="https://images.unsplash.com/photo-1581512798638-ebd32054b3b9?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1011&q=80" style="width: 100%;">
</div>
</div>-->
<p style='color: rgb(43, 118, 141);'>Our kitchen is rooted in an appreciation for exceptional homegrown ingredients, thoughtful-yet-simple preparations, and a passion for breathing new life into Old World recipes</p>
</div>
</section>
<section id="booking" style='margin-top:100vh' >
<div class='content' style='margin-bottom:10%;'>
<h1 style="color: rgb(235, 212, 5);">INDOOR CAFE</h1>
<p style='color:rgb(201, 216, 69);'>visit our beautiful cafe kitchen</p>
</div>
</div>
</section>
<nav>
<ul>
<div id="navbar">
<a href="#home">Home</a>
<a href="#order">Order</a>
<a href="#menu">Menus</a>
<a href ="#booking">Booking</a>
<a href="https://www.google.co.in/maps/place/2+Bis+Caf%C3%A9/@48.8489722,2.3434016,16.52z/data=!4m12!1m6!3m5!1s0x47e671e70b178259:0x368c1a93de4cad06!2sColl%C3%A8ge+de+France!8m2!3d48.8488839!4d2.3454896!3m4!1s0x47e671e509ab1491:0x5af8b9c4896a1f5f!8m2!3d48.8478084!4d2.3522799">Location</a>
</div>
<div style="padding:15px 15px 350px;font-size:30px">
</ul>
</nav>
<footer>
<p style="color:rgb(201, 216, 69);">For Bookings pls email at:<br>
<a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox">aggarwalpalak08@gmail.com</a></p>
</footer>
</body>
</html>