-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
117 lines (102 loc) · 2.19 KB
/
menu.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu - Dark Eats</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #fff;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.header {
padding: 20px 0;
text-align: center;
}
.header h1 {
margin: 0;
font-size: 36px;
}
.navbar {
text-align: center;
margin-bottom: 30px;
}
.navbar ul {
padding: 0;
margin: 0;
list-style-type: none;
}
.navbar ul li {
display: inline-block;
margin: 0 10px;
}
.navbar ul li a {
text-decoration: none;
color: #fff;
font-size: 18px;
}
.navbar ul li a:hover{
color: yellow;
}
.menu {
text-align: center;
margin-bottom: 50px;
}
.menu h2 {
font-size: 36px;
margin-bottom: 20px;
}
.menu-item {
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
margin-bottom: 20px;
}
.menu-item h3 {
margin: 0;
font-size: 24px;
}
.menu-item p {
margin: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Dark Eats 🍕</h1>
</div>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="container">
<div class="menu">
<h2>Our Menu</h2>
<div class="menu-item">
<h3>Special Burger 🍔</h3>
<p>A juicy burger with caramelized onions and cheddar cheese</p>
</div>
<div class="menu-item">
<h3>Spicy Chicken Wings 🍗</h3>
<p>Crispy chicken wings tossed in our secret spicy sauce</p>
</div>
<div class="menu-item">
<h3>Chocolate Lava Cake 🎂</h3>
<p>Rich chocolate cake with a molten chocolate center</p>
</div>
</div>
</div>
</body>
</html>