-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCafe-Restaurant.html
62 lines (57 loc) · 1.9 KB
/
Cafe-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Website</title>
<link rel="stylesheet" href="CafeStyle.css">
</head>
<body>
<header>
<h1>Delicious Eats Restaurant</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Menu</a></li>
<li><a href="#">Reservations</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Us</h2>
<p>Welcome to Delicious Eats Restaurant, where we serve delicious dishes made with fresh ingredients.</p>
</section>
<section id="menu">
<h2>Our Menu</h2>
<ul>
<li>Appetizers</li>
<li>Entrees</li>
<li>Desserts</li>
<li>Drinks</li>
</ul>
</section>
<section id="reservations">
<h2>Make a Reservation</h2>
<form>
<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>
<button type="submit">Submit</button>
</form>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Email: [email protected]</p>
<p>Phone: 123-456-7890</p>
</section>
</main>
<footer>
<p>© 2024 Delicious Eats Restaurant</p>
</footer>
</body>
</html>