Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

The second section element is not showing up on the preview. I’ve checked it multiple times against the other two sections, which both show up, and don’t see any difference in the code, unsure why it’s not working

Your code so far

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

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

<body>
   <main>
     <h1>Stardew Valley Guides</h1>
     <p>Stardew Valley is a 2016 farm life simulation role-playing video game developed by Eric "ConcernedApe" Barone. Players take the role of a character who inherits their deceased grandfather's dilapidated farm in a place known as "Stardew Valley". The game was originally released for Windows in February 2016 before being ported to other platforms. Stardew Valley is an open-ended game, allowing players to grow crops, raise livestock, fish, cook, mine, forage, and socialize with the townspeople, including the ability to marry and have children. Here are some helpful guides for the game.</p>

 <section>
         <h2>A Beginner's Guide to Stardew Valley</h2>
         <p>I've always made guide videos for people who already know their way around the valley, not realizing that I've neglected to make a video for the absolute beginners, so I'm finally going to fix that! Just in case you want to watch the video, but don't need help with controls or something, I made a lot of chapters so you can skip to whichever part you like!</p>

        <iframe
           width="560"
           height="315"
           src="https://youtube.com/embed/VmMLBDwEz4U?si=ITivJnt_WM8A5Kkn"
           title="Beginners Guide"
        </iframe>
  </section>
  
   <section>
        <h2>The Ultimate Guide to Weekly Events in Stardew Valley</h2>
        <p>A lot of things change in the valley day by day. Sometimes it can be hard to keep track of it all, or even figure out what day things happen in the first place! Here's all of the important days of the week, along with a checklist to wrap it up!
</p>

        <iframe
           width="560"
           height="315"
           src="https://youtube.com/embed/NlA6cfgqTPc?si=sgjEMUhmC4YXPU3g"
           title="Weekly Events"
        </iframe>
        </section>
        
        <section>
            <h2>An Exhaustive Guide to Every Skill In Stardew Valley</h2>
            <p>Over the last year, I've made a guide to each skill in Stardew Valley, making sure to cover almost anything the game has to throw at you. This is a compilation of those videos, with edits made to reduce any incorrect information, and add in new information I've learned since making the videos. I hope you enjoy having all of the information in one place!</p>

            <iframe
              width="560"
              height="315"
              src="https://youtube.com/embed/5Xb0Ybg0AlY?si=STPMnkRY1rJg7F61"
              title="Stardew skills"
            </iframe>
        </section>

 </main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

voce precisa fechar o <iframe> antes da tag de fechamento

Hi @mercurian

The editor is showing where you have malformed code.

The iframe opening tag above the iframe closing tag is missing an angular bracket.

Happy coding

1 Like