Thursday, October 17, 2024

Home

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Professional Digital Marketing Agency">
    <title>Digital Marketing Agency</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <!-- Header Section -->
    <header>
        <div class="container">
            <nav>
                <a href="#" class="logo">MarketingPro</a>
                <ul class="nav-links">
                    <li><a href="#services">Services</a></li>
                    <li><a href="#about">About Us</a></li>
                    <li><a href="#portfolio">Portfolio</a></li>
                    <li><a href="#contact">Contact</a></li>
                </ul>
            </nav>
            <div class="header-content">
                <h1>Grow Your Business with Our Digital Marketing Solutions</h1>
                <p>We provide innovative strategies to help your business succeed online.</p>
                <a href="#services" class="btn">Learn More</a>
            </div>
        </div>
    </header>

    <!-- Services Section -->
    <section id="services">
        <div class="container">
            <h2>Our Services</h2>
            <div class="services-grid">
                <div class="service">
                    <h3>SEO Optimization</h3>
                    <p>Boost your website's visibility on search engines with our advanced SEO techniques.</p>
                </div>
                <div class="service">
                    <h3>Social Media Marketing</h3>
                    <p>Engage your audience and grow your social media presence across platforms.</p>
                </div>
                <div class="service">
                    <h3>Pay-Per-Click Advertising</h3>
                    <p>Drive instant traffic to your website with targeted PPC campaigns.</p>
                </div>
                <div class="service">
                    <h3>Content Marketing</h3>
                    <p>Create compelling content that attracts and converts your target audience.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about">
        <div class="container">
            <h2>About Us</h2>
            <p>We are a team of dedicated professionals with a passion for helping businesses thrive online. Our mission is to deliver impactful digital marketing solutions that drive real results.</p>
            <a href="#contact" class="btn">Get in Touch</a>
        </div>
    </section>

    <!-- Portfolio Section -->
    <section id="portfolio">
        <div class="container">
            <h2>Our Work</h2>
            <div class="portfolio-grid">
                <div class="portfolio-item">
                    <img src="project1.jpg" alt="Project 1">
                    <h3>Project Title</h3>
                </div>
                <div class="portfolio-item">
                    <img src="project2.jpg" alt="Project 2">
                    <h3>Project Title</h3>
                </div>
                <div class="portfolio-item">
                    <img src="project3.jpg" alt="Project 3">
                    <h3>Project Title</h3>
                </div>
            </div>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contact">
        <div class="container">
            <h2>Contact Us</h2>
            <p>Have a question or want to work with us? Fill out the form below!</p>
            <form action="#" method="post">
                <input type="text" name="name" placeholder="Your Name" required>
                <input type="email" name="email" placeholder="Your Email" required>
                <textarea name="message" rows="5" placeholder="Your Message" required></textarea>
                <button type="submit" class="btn">Send Message</button>
            </form>
        </div>
    </section>

    <!-- Footer Section -->
    <footer>
        <div class="container">
            <p>&copy; 2024 MarketingPro. All Rights Reserved.</p>
        </div>
    </footer>

</body>
</html>

No comments:

Post a Comment