-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (66 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Menu Website</title>
<link rel="shortcut icon" href="./images/rice.jpg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<!-- <style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
overflow: hidden;
background-color: #333;
}
nav ul li {
float: left;
}
nav ul li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav ul li a:hover {
background-color: #111;
}
.content {
padding: 20px;
}
</style> -->
</head>
<body>
<header>
<h1>Welcome to Our Food Menu</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="food-table.html">Food Table</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="image-gallery.html">Image Gallery</a></li>
<li><a href="order-form.html">Order Form</a></li>
</ul>
</nav>
<div class="content">
<h2>Home</h2>
<p>Welcome to our food menu website. Here, you can explore a variety of delicious Nigerian dishes, watch cooking videos, view our image gallery, and place your orders online.</p>
</div>
</body>
</html>