Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Hi. I thought I did a complete job. However, no matter what I change it seems that my second section will not appear. I checked if I opened and closed the sections properly and it seems like I did however, even if I rearrange videos the second one will not appear.
Any insights?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Swahili learning Video Compilation Page</title>
</head>
<body>
    <main>
        <h1>Swahili Learning Videos </h1>
        <p>Here you will watch many great videos to help you learn swahili quickly</p>
        <section> Foods 
        <h2>Akili and Me Food Vocabulary</h2>
        <p>Check out this fun video to learn the basic food vocabulary for your upcpming trip to East Africa.</p>
        <iframe
            src="https://youtube.com/embed/DjmLoxkeMPg?feature=shared"
            title="Intro Learn with Akili"
            height="320"
            width="540"
             </iframe>
</section>
              <section>Outside the classroom 
        <h2>Feelings and Friendships</h2>
        <p>Check out this fun video to learn the basics to express your emotions.</p>
        <iframe
            src="https://youtube.com/embed/Qwu8cf9ZvYA?feature=shared"
            title="Outside the classroom"
            height="320"
            width="520"
             </iframe>
   </section> 
    <section> Story Time 
        <h2>Unapenda kufanya Nini?/What do you like to do?</h2>
        <p>Check out this short story in Swahili to learn different fun activities people like to do.</p>
        <iframe
            src="https://youtube.com/embed/9B5GwEgzobQ?feature=shared"
            title="Story time-What do you like to do?"
            height="320"
            width="540"
             </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/135.0.0.0 Safari/537.36

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Problem is here

you haven’t properly closed the opening iframe tag

It looks like all of the iframes have the same issue

hope that helps

Thanks, I figured out the errors prior to seeing your comment. But, I did see your comment on someone else’s post that helped me!! THANK YOU!

1 Like