-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (128 loc) Β· 2.83 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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>
<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;
}
.hero {
background-image: url('https://d4t7t8y8xqo0t.cloudfront.net/resized/750X436/eazytrendz%2F4288%2Ftrend20240112063242.jpg');
background-size: cover;
background-position: center;
padding: 100px 0;
text-align: center;
}
.hero h2 {
font-size: 48px;
margin: 0;
}
.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;
}
.footer {
background-color: #222;
padding: 20px 0;
text-align: center;
}
.footer p {
margin: 0;
font-size: 18px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Dark Eats π</h1>
</div>
<div class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="hero">
<h2>Welcome to Dark Eats</h2>
<p>Discover our delicious dishes</p>
</div>
<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>
<div class="footer">
<p>© 2024 Dark Eats. All rights reserved.</p>
</div>
</body>
</html>