Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Can someone help me figure out why the entire third section is not being recognized? I’ve even copied and pasted the first two sections because they work and wanted to see if it was just a link issue, but not even the third h2 element or paragraph are showing up despite them being the same.

Your code so far

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

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

<body>
 <main>
    <h1>Sims 4 Let's Plays</h1>
     <p>I spend a lot of time playing the Sims 4 and have fun creating characters and their unique story lines. Many YouTubers, or Simmers, like to showcase their sims and storylines in video formats called "Let's Play", allowing for other simmers and fans to interact with their content and enjoy their storylines as well.</p>
    
    <section>
     <h2>Sims 4 CAS</h2>
      <p>CAS stands for "Create a Sim" and in these videos, simmers showcase their processes for creating sims in their styles and all of the custom content they have downloaded to make their sims look unique.</p>
      <iframe src="https://www.youtube.com/embed/watch?v=IrCxfMz1WrM" title="Sims 4 cas" width="560" height="315" allowfullscreen></iframe>
    </section>
    
    <section>
     <h2>Sims 4 LP Episode</h2>
      <p>Most Simmers have complete YouTube series called "Let's Play" or "LP" that are similar to tv show episodes for their storylines.</p>
      <iframe src="https://www.youtube.com/embed/watch?v=LUxwB3Eq-0E" title="Sims 4 LP" width="560" height="315" allowfullscreen></inframe>
     </section>
    
     <section>
     <h2>Sims 4 LP Machinima</h2>
      <p>Some simmers are highly skilled in video editing and working with tools like blender to make animated series. These videos typically do not show gameplay, but just use the sims as animation assets.</p>
      <iframe src="https://www.youtube.com/embed/watch?v=zLUGc59cyB0" title="Sims 4 Machinimas" width="560" height="315" allowfullscreen></inframe>
     </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/136.0.0.0 Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Hi @Emerald_Makpie !

Welcome to the forum!

Your issue is here

this is not a valid HTML element. you have a typo.
once you fix that, then things will work :+1:

1 Like