Untitled

 avatar
unknown
plain_text
10 days ago
2.7 kB
3
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Music Producer | Beats & Mixing</title>
    <link rel="stylesheet" href="style.css">
    <script defer src="script.js"></script>
</head>
<body>

    <!-- Header Section -->
    <header>
        <div class="logo">
            <img src="assets/logo.png" alt="Music Producer Logo">
        </div>
        <nav>
            <ul>
                <li><a href="#about">About</a></li>
                <li><a href="#services">Services</a></li>
                <li><a href="#portfolio">Portfolio</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <!-- Hero Section -->
    <section id="hero">
        <h1>Professional Beats & Mixing</h1>
        <p>Get industry-quality production for your next hit.</p>
        <button onclick="playSample()">Play Sample</button>
        <audio id="sampleAudio" src="assets/sample-track.mp3"></audio>
    </section>

    <!-- About Section -->
    <section id="about">
        <h2>About Me</h2>
        <p>I am a passionate music producer with years of experience in beat-making, mixing, and mastering.</p>
    </section>

    <!-- Services Section -->
    <section id="services">
        <h2>Services</h2>
        <div class="service-item">
            <h3>Custom Beats</h3>
            <p>Unique beats tailored to your style.</p>
        </div>
        <div class="service-item">
            <h3>Mixing & Mastering</h3>
            <p>Professional sound quality for your tracks.</p>
        </div>
        <div class="service-item">
            <h3>Sound Design</h3>
            <p>Custom sounds to enhance your music.</p>
        </div>
    </section>

    <!-- Portfolio Section -->
    <section id="portfolio">
        <h2>Portfolio</h2>
        <div class="track">
            <audio controls>
                <source src="assets/beats/beat1.mp3" type="audio/mpeg">
                Your browser does not support the audio element.
            </audio>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contact">
        <h2>Contact Me</h2>
        <form id="contactForm">
            <input type="text" placeholder="Your Name" required>
            <input type="email" placeholder="Your Email" required>
            <textarea placeholder="Your Message" required></textarea>
            <button type="submit">Send</button>
        </form>
    </section>

    <!-- Footer -->
    <footer>
        <p>&copy; 2025 Music Producer. All Rights Reserved.</p>
    </footer>

</body>
</html>
Leave a Comment