Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

(menu)

<!DOCTYPE html>

<html>

<head>

<title>Menu</title>

<base href="/">

<link rel="stylesheet" type="text/css" href="styles.css">

</head>

<body>

<header>

<h1>Our Menu</h1>

</header>

<nav>

<a href="index.html">Home</a>

<a href="location.html">Location</a>

<a href="contact.html">Contact</a>

<a href="about.html">About Us</a>

</nav>

<main>

<h2 id="appetizers">Appetizers</h2>

<ul>

<li>Bruschetta - $7</li>

<li>Fried Calamari - $8</li>

<li>Garlic Bread - $5</li>


</ul>

<h2 id="entrees">Entrees</h2>

<ul>

<li>Margherita Pizza - $12</li>

<li>Burger - $10</li>

<li>Spaghetti Bolognese - $14</li>

</ul>

<h2 id="desserts">Desserts</h2>

<ul>

<li>Tiramisu - $7</li>

<li>Cheesecake - $8</li>

<li>Ice Cream - $6</li>

</ul>

</main>

<footer>

&copy; 2023 Food Business

</footer>

</body>

</html>

You might also like