<!DOCTYPE html>
<html>
<head>
<title>Restaurant Name</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Restaurant Name</h1>
<nav>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section id="appetizer">
<h2>Crispy Fried Calamari</h2>
<img src="calamari.jpg" alt="Crispy Fried Calamari">
<p>Crispy fried calamari served with garlic aioli dip.</p>
<p>$12.99</p>
</section>
<section id="main-course">
<h2>Grilled Ribeye Steak</h2>
<img src="steak.jpg" alt="Grilled Ribeye Steak">
<p>Grilled ribeye steak served with roasted garlic mashed potatoes and grilled vegetables.</p>
<p>$25.99</p>
</section>
<section id="vegetarian">
<h2>Stuffed Portobello Mushroom</h2>
<img src="mushroom.jpg" alt="Stuffed Portobello Mushroom">
<p>Stuffed portobello mushroom with quinoa, spinach, and feta cheese.</p>
<p>$18.99</p>
</section>
<section id="seafood">
<h2>Grilled Salmon</h2>
<img src="salmon.jpg" alt="Grilled Salmon">
<p>Grilled salmon served with lemon butter sauce and asparagus.</p>
<p>$21.99</p>
</section>
<section id="dessert">
<h2>Chocolate Lava Cake</h2>
<img src="lavacake.jpg" alt="Chocolate Lava Cake">
<p>Chocolate lava cake served with vanilla ice cream and fresh berries.</p>
<p>$9.99</p>
</section>
</main>
<footer>
<p>123 Main Street, Anytown, USA | Phone: (123) 456-7890 | Email: info@restaurant.com</p>
</footer>
</body>
</html>