Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Good day.

Completed the exercise and checked with ai i always get the something went wrong message also if i reset the lesson or restart the pc

this is the code, thanks for the support.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The Throttle Hub | Motorcycle Culture</title>
</head>
<body>

    <main>
        <h1>The Throttle Hub</h1>
        
        <p>
            Welcome to The Throttle Hub, a curated space for those who live for the open road. 
            From the roaring engines of vintage cruisers to the precision engineering of 
            modern sportbikes, we celebrate the machine, the rider, and the journey.
        </p>

        <hr>

        <section>
            <h2>The American Cruiser</h2>
            <p>
                Defined by a low seat height and a roaring V-twin engine, the cruiser is 
                built for long stretches of highway and ultimate comfort. It is the 
                ultimate symbol of freedom on two wheels.
            </p>
            <iframe 
                width="560" 
                height="315" 
                src="https://www.youtube.com/embed/8_un_C77nVM" 
                title="The history and soul of the cruiser motorcycle"
                frameborder="0" 
                allowfullscreen>
            </iframe>
        </section>

        <section>
            <h2>Precision and Speed: Sportbikes</h2>
            <p>
                Sportbikes are the peak of motorcycle performance. Utilizing lightweight 
                materials and aerodynamic fairings, these machines are designed to 
                dominate the track and carve through canyon corners.
            </p>
            <iframe 
                width="560" 
                height="315" 
                src="https://www.youtube.com/embed/o0m9u_m_iL8" 
                title="The engineering behind modern superbikes"
                frameborder="0" 
                allowfullscreen>
            </iframe>
        </section>

        <section>
            <h2>The Art of the Cafe Racer</h2>
            <p>
                Originating in 1960s London, the Cafe Racer is a stripped-down, customized 
                vintage bike built for quick rides between transport hubs. It represents 
                the intersection of DIY culture and timeless style.
            </p>
            <iframe 
                width="560" 
                height="315" 
                src="https://www.youtube.com/embed/fA67fO9nC2M" 
                title="Custom cafe racer build showcase"
                frameborder="0" 
                allowfullscreen>
            </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/145.0.0.0 Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Welcome to the forum @giacomopane21

Try removing the horizontal rule element.

Happy coding

Good day , thanks for reply.

i updated the code removing hr and also the full screen and border attribute but still have the something went wrong message.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The Throttle Hub | Motorcycle Culture</title>
</head>
<body>

    <main>
        <h1>The Throttle Hub</h1>
        
        <p>
            Welcome to The Throttle Hub, a curated space for those who live for the open road. 
            From the roaring engines of vintage cruisers to the precision engineering of 
            modern sportbikes, we celebrate the machine, the rider, and the journey.
        </p>
 <section>
            <h2>The American Cruiser</h2>
            <p>
                Defined by a low seat height and a roaring V-twin engine, the cruiser is 
                built for long stretches of highway and ultimate comfort. It is the 
                ultimate symbol of freedom on two wheels.
            </p>
            <iframe 
                width="560" 
                height="315" 
                src="https://www.youtube.com/embed/8_un_C77nVM" 
                title="The history and soul of the cruiser motorcycle"
                >
            </iframe>
        </section>

        <section>
            <h2>Precision and Speed: Sportbikes</h2>
            <p>
                Sportbikes are the peak of motorcycle performance. Utilizing lightweight 
                materials and aerodynamic fairings, these machines are designed to 
                dominate the track and carve through canyon corners.
            </p>
            <iframe 
                width="560" 
                height="315" 
                src="https://www.youtube.com/embed/o0m9u_m_iL8" 
                title="The engineering behind modern superbikes"
                >
            </iframe>
        </section>

        <section>
            <h2>The Art of the Cafe Racer</h2>
            <p>
                Originating in 1960s London, the Cafe Racer is a stripped-down, customized 
                vintage bike built for quick rides between transport hubs. It represents 
                the intersection of DIY culture and timeless style.
            </p>
            <iframe 
                width="560" 
                height="315" 
                src="https://www.youtube.com/embed/fA67fO9nC2M" 
                title="Custom cafe racer build showcase"
             >
            </iframe>
        </section>

    </main>

</body>
</html>

Your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

Thanks for the help but no result i get the
// running tests
Error: Timed out waiting for the test frame to load
message in the console i also disable all the extensions and I’m running chrome

do you have the latest browser version?

does this problem persist in other challenges?

Yes, chrome is updated ,i guess is a problem of very low speed internet connection.
Just in this challenge I’m having issues, continuing the full stack curriculum.