Untitled

 avatar
unknown
plain_text
a year ago
1.5 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Restaurant Name</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Restaurant Name</h1>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#menu">Menu</a></li>
                <li><a href="#about">About</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>
    <section id="home">
        <h2>Welcome to Our Restaurant</h2>
        <p>Enjoy the best dishes in town!</p>
    </section>
    <section id="menu">
        <h2>Menu</h2>
        <div class="menu-item">
            <h3>Dish 1</h3>
            <p>Description of dish 1.</p>
            <p>Price: $10.00</p>
        </div>
        <div class="menu-item">
            <h3>Dish 2</h3>
            <p>Description of dish 2.</p>
            <p>Price: $12.00</p>
        </div>
        <!-- Add more menu items as needed -->
    </section>
    <section id="about">
        <h2>About Us</h2>
        <p>Information about the restaurant.</p>
    </section>
    <section id="contact">
        <h2>Contact Us</h2>
        <p>Email: example@example.com</p>
        <p>Phone: (123) 456-7890</p>
        <p>Address: 123 Main Street, Anytown, USA</p>
    </section>
    <footer>
        <p>&copy; 2024 Restaurant Name. All rights reserved.</p>
    </footer>
</body>
</html>
Editor is loading...
Leave a Comment