Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Hello. Will you look at my code and say what the problem is with it and why it doesn’t want to run?

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Video Compilation Page</title>
</head>

<body>
    <!-- Единственный потомок тела -->
    <main>
        <!-- Заголовок страницы -->
        <h1>Best Travel Videos Collection</h1>
        
        <!-- Параграф-введение -->
        <p>This page showcases some amazing travel videos from around the world.</p>
    
        <!-- Первая секция -->
        <section>
            <h2>Adventures in Iceland</h2>
            <p>Experience breathtaking landscapes and unforgettable moments!</p>
            <iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ"
                    title="Iceland Adventure Video"
                    height="315"
                    width="560"></iframe>
        </section>
    
        <!-- Вторая секция -->
        <section>
            <h2>Exploring Patagonia</h2>
            <p>Discover untouched wilderness and natural beauty.</p>
            <iframe src="https://www.youtube.com/embed/hIG5qfMKJYU"
                    title="Patagonia Exploration Video"
                    height="315"
                    width="560"></iframe>
        </section>
    
        <!-- Третья секция -->
        <section>
            <h2>Underwater Wonders of Maldives</h2>
            <p>Dive into crystal clear waters and meet colorful marine life.</p>
            <iframe src="https://www.youtube.com/embed/xvFZjo5PgGY"
                    title="Maldives Underwater Experience"
                    height="315"
                    width="560"></iframe>
        </section>
    </main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 OPR/122.0.0.0

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Can you talk about what’s gone wrong and where you got stuck debugging please?

Yes, I can. The problem is with the running of this code. Here is the screenshot of the problem. Will you have a look at it.

Can you be any more specific? It is important to learn how to talk about code and it makes it much easier for me to help. Right now you’re basically just saying ‘fix it for me’, wich doesn’t help you learn anything :laughing:

1 Like

You know what? You’re totally right! It’s super important for me to learn how to figure things out on my own instead of just asking someone else to fix everything for me. I need to step up my game when it comes to describing issues clearly and providing all the details needed so we can work together effectively.

So here’s what I’m gonna do: I’ll start paying closer attention to what’s going wrong with my code, jot down exactly where it’s breaking, and try different solutions before coming back to ask for advice. And if I still can’t crack it, I’ll make sure to show you exactly what I’ve tried already—you know, give ya the whole nine yards!

Let me know if there’s anything special you’d like me to include next time around. Your guidance has been invaluable, and I really want to keep improving.

Thanks again for taking the time to point this out—it’s helping me grow as a developer!

1 Like

For me, your code passes. I also ran it through an HTML validator and it didn’t show any errors.

1 Like

Thank you very much. There was most likely a problem with the code sending system.

when you get that red error message at the top it happens that challenge tests don’t work

1 Like

Thank you very much. This is very valuable advice. I will keep it in mind.