-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestaurant.html
101 lines (89 loc) · 3.27 KB
/
restaurant.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Name</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<header>
<div class="container">
<h1>ELdominoz</h1>
<nav>
<ul>
<li><a href="#menu">Menu</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#reservation">Reservation</a></li>
</ul>
</nav>
</div>
</header>
<section id="intro" class="hero-section">
<div class="container">
<h2>Welcome to Restaurant Eldoinozm</h2>
<p>Enjoy the tastiest meals.</p>
</div>
</section>
<section id="menu">
<div class="container">
<h2>Our Menu</h2>
<div class="menu-grid">
<div class="menu-item">
<h3>bacon</h3>
<img src="./styles/Assets/Bacon-In-The-Oven-S1-1-500x500.jpg" alt="A beautiful scenery">
<p>Enjoy a perfect delicacy.</p>
<p>ksh370</p>
</div>
<div class="menu-item">
<h3>Fried chips</h3>
<body>
<h1>My Favorite Image</h1>
<img src="./styles/Assets/Baked-French-Fries-Video.jpg" alt="A beautiful scenery">
</body>
<p>Crisppiest fries on the planet.</p>
<p>ksh 280</p>
</div>
<div class="menu-item">
<h3>Chapati</h3>
<img src="./styles/Assets/breads-naan-roti-chapati-high-res-1024x769.webp" alt="A beautiful scenery">
<p>Yummy Chapati from the best chefs.</p>
<p>ksh300</p>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>Phone:0723187678</p>
<p>Email: [email protected]</p>
<p>Address: 433 kijabe Street, Uptown</p>
</div>
</section>
<section id="reservation">
<div class="container">
<h2>Make a Reservation</h2>
<form id="reservationForm">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="date">Date</label>
<input type="date" id="date" name="date" required>
<label for="time">Time</label>
<input type="time" id="time" name="time" required>
<label for="guests">Number of Guests</label>
<input type="number" id="guests" name="guests" required>
<button type="submit">Book Now</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Restaurant Name. All Rights Reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>