<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Polyglot Hub - Learn a New Language</title>
</head>
<body>

    <header>
        <h1>Polyglot Hub</h1>
        <p>Your journey to fluency starts here.</p>
        <nav>
            <ul>
                <li><a href="#courses">Courses</a></li>
                <li><a href="#about">About Us</a></li>
                <li><a href="#contact">Contact</a></li>
                <li><a href="login.html">Log In</a> | <a href="signup.html">Sign Up</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section id="hero">
            <h2>Unlock Your Potential with Language Learning</h2>
            <p>Choose from Spanish, French, Japanese, and more!</p>
            <a href="#courses">Explore Courses Now</a>
        </section>

        <section id="courses">
            <h2>Our Language Courses</h2>

            <article>
                <h3>Spanish - Beginner Level</h3>
                <p>Start with basic vocabulary, grammar, and essential phrases for travel.</p>
                <ul>
                    <li>10 Lessons</li>
                    <li>Audio Pronunciation</li>
                    <li>Simple Quizzes</li>
                </ul>
                <a href="spanish-beginner.html">View Details</a>
            </article>

            <article>
                <h3>French - Intermediate Level</h3>
                <p>Practice conversations, read short stories, and improve your speaking skills.</p>
                <ul>
                    <li>Advanced Grammar</li>
                    <li>Reading Comprehension</li>
                    <li>Conversation Practice</li>
                </ul>
                <a href="french-intermediate.html">View Details</a>
            </article>

            <article>
                <h3>Japanese - Culture & Language</h3>
                <p>Learn Hiragana, Katakana, and basic Kanji while exploring Japanese culture.</p>
                <a href="japanese.html">View Details</a>
            </article>

        </section>

        <section id="features">
            <h2>Why Choose Polyglot Hub?</h2>
            <ol>
                <li>Native Speaker Audio</li>
                <li>Interactive Exercises</li>
                <li>Track Your Progress</li>
                <li>Community Forum Access</li>
            </ol>
        </section>

        <section id="contact">
            <h2>Get in Touch</h2>
            <form action="submit_form.php" method="POST">
                <label for="name">Your Name:</label><br>
                <input type="text" id="name" name="name" required><br><br>

                <label for="email">Your Email:</label><br>
                <input type="email" id="email" name="email" required><br><br>

                <label for="language">Interested Language:</label><br>
                <select id="language" name="language">
                    <option value="none">-- Select One --</option>
                    <option value="spanish">Spanish</option>
                    <option value="french">French</option>
                    <option value="japanese">Japanese</option>
                    <option value="other">Other</option>
                </select><br><br>

                <label for="message">Your Message:</label><br>
                <textarea id="message" name="message" rows="4" cols="50" required></textarea><br><br>

                <input type="submit" value="Send Message">
            </form>
        </section>
    </main>

    <footer>
        <p>&copy; 2025 Polyglot Hub. All rights reserved.</p>
        <p><a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a></p>
    </footer>

</body>
</html>