-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 811 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>90's Burger Restaurant</title>
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="wishlist.html">Wishlist</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
</nav>
</header>
<h1>Welcome to Our Restaurant</h1>
<p>We offer delicious meals prepared with love and care, satisfying every taste.</p>
<img src="./img/1.jpg" alt="Restaurant Image" title="90's resturant">
<footer>
<p>© 2024 90's Burger</p>
</footer>
</body>
</html>