<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Home Builder</title>
    <style>
        /* Add your CSS styles here */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        nav {
            background-color: #444;
            text-align: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
        }

        nav a:hover {
            background-color: #555;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-content {
            padding: 20px;
            background-color: #fff;
        }

        .section-heading {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .feature img {
            width: 200px;
            height: 150px;
            margin-right: 20px;
        }

        .feature-text {
            flex: 1;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px;
        }
    </style>
</head>
<body>
    <header>
        <h1>Your Home Builder</h1>
        <p>Your Dream Home Awaits!</p>
    </header>
    <nav>
        <a href="#about">About Us</a>
        <a href="#services">Services</a>
        <a href="#portfolio">Portfolio</a>
        <a href="#contact">Contact</a>
    </nav>
    <div class="container">
        <section id="about" class="main-content">
            <h2 class="section-heading">About Us</h2>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla vitae ligula nec nulla varius ullamcorper.</p>
        </section>
        <section id="services" class="main-content">
            <h2 class="section-heading">Our Services</h2>
            <div class="feature">
                <img src="construction-icon.png" alt="Construction Icon">
                <div class="feature-text">
                    <h3>Custom Home Construction</h3>
                    <p>We specialize in building custom homes tailored to your unique needs and preferences.</p>
                </div>
            </div>
            <div class="feature">
                <img src="renovation-icon.png" alt="Renovation Icon">
                <div class="feature-text">
                    <h3>Home Renovation</h3>
                    <p>We offer top-notch renovation services to transform your existing home into your dream home.</p>
                </div>
            </div>
        </section>
        <section id="portfolio" class="main-content">
            <h2 class="section-heading">Portfolio</h2>
            <!-- Add your portfolio images and descriptions here -->
        </section>
        <section id="contact" class="main-content">
            <h2 class="section-heading">Contact Us</h2>
            <p>Feel free to get in touch with us for inquiries or to schedule a consultation.</p>
            <p>Email: your@email.com</p>
            <p>Phone: (123) 456-7890</p>
        </section>
    </div>
    <footer>
        &copy; 2023 Your Home Builder
    </footer>
</body>
</html>