Untitled

 avatar
unknown
plain_text
a year ago
1.5 kB
0
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>Fast Food Delight</title>
</head>
<body>
    <header>
        <h1>Fast Food Delight</h1>
        <nav>
            <ul>
                <li><a href="#menu">Menu</a></li>
                <li><a href="#about">About Us</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <section id="menu">
        <h2>Menu</h2>
        <div class="menu-item">
            <img src="burger.jpg" alt="Burger">
            <h3>Cheeseburger</h3>
            <p>Delicious cheeseburger with all the fixings.</p>
            <p class="price">$5.99</p>
        </div>
        <!-- Add more menu items as needed -->
    </section>

    <section id="about">
        <h2>About Us</h2>
        <p>Welcome to Fast Food Delight, where we serve tasty and affordable fast food that satisfies your cravings!</p>
    </section>

    <section id="contact">
        <h2>Contact</h2>
        <p>For orders and inquiries, please contact us at:</p>
        <address>
            Email: <a href="mailto:info@fastfooddelight.com">info@fastfooddelight.com</a><br>
            Phone: (555) 123-4567
        </address>
    </section>

    <footer>
        <p>&copy; 2024 Fast Food Delight. All rights reserved.</p>
    </footer>
</body>
</html>
Leave a Comment