-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
74 lines (65 loc) · 2.48 KB
/
index.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
<!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">
<title>Moringa Cafeteria</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header section with navigation bar -->
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Menu</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<!-- Main section with hero, about, menu, and contact sections -->
<main>
<!-- Hero section with welcome message, description, and button -->
<section id="hero">
<h1>Welcome to Restaurant Name</h1>
<p>Discover our delicious menu and experience our warm hospitality.</p>
<button>View Menu</button>
</section>
<!-- About section with information about the restaurant -->
<section id="about">
<h2>About Us</h2>
<p>We are a family-owned restaurant dedicated to serving delicious food using only the freshest ingredients.</p>
</section>
<!-- Menu section with a list of menu items -->
<section id="menu">
<h2>Our Menu</h2>
<p>Explore our wide range of dishes, from appetizers to entrees to desserts.</p>
<ul>
<li><h3>Appetizers</h3></li>
<li><h3>Entrees</h3></li>
<li><h3>Desserts</h3></li>
</ul>
</section>
<!-- Contact section with a form for customers to contact the restaurant -->
<section id="contact">
<h2>Contact Us</h2>
<p>Get in touch with us for reservations or any inquiries.</p>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<!-- Footer section with copyright information -->
<footer>
<p>© 2023 Restaurant Name. All rights reserved.</p>
</footer>
</body>
</html>