Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening :

Please check my code it does not want to pass. I even tried all the different AI agents. I have been stuck for the past 2 days

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta content="Different coffee brewing methods"
    <title>The Art of Coffee Brewing</title>
  </head>
  <body>
    <main>
      <h1>The Art of Coffee Brewing</h1>
      <p>
        Brewing the perfect cup of coffee is an art form. From pour-over to espresso, every method brings out different
        flavors, aromas, and textures. Whether you're a casual coffee drinker or a passionate barista, understanding
        these methods can elevate your coffee experience.
      </p>

      <section>
        <h2>Pour-Over Perfection</h2>
        <p>
          Pour-over coffee emphasizes clarity and complexity. With the right grind size and slow, circular pours, this
          method can produce a beautifully nuanced cup.
        </p>
        <iframe
          src="https://www.youtube.com/embed/xsQFYc1NvbY"
          title="How to Make Pour-Over Coffee"
          width="560"
          height="315"
         </iframe>
      </section>

      <section>
        <h2>The Espresso Craft</h2>
        <p>
          Espresso is the heart of many popular coffee drinks. It requires high pressure, fine grounds, and precise
          timing. Mastering espresso means mastering the fundamentals of coffee extraction.
        </p>
        <iframe
          src="https://www.youtube.com/embed/38EPoUX5U4U"
          title="How to Pull the Perfect Espresso Shot"
          width="560"
          height="315"
         </iframe>
      </section>

      <section>
        <h2>Cold Brew Simplicity</h2>
        <p>
          Cold brew is smooth, sweet, and low in acidity. It's made by steeping coarse coffee grounds in cold water for
          an extended period, offering a refreshing way to enjoy coffee.
        </p>
        <iframe
          src="https://www.youtube.com/embed/C4vKqAb1F2Q"
          title="How to Make Cold Brew Coffee"
          width="560"
          height="315"
        </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/137.0.0.0 Safari/537.36 Edg/137.0.0.0

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

Your opening iframe elements are missing something.

hello and welcome to fcc forum :slight_smile:

  • all of your “iframes” has a syntax erorrs
  • hint: check if you are closing those “opening iframe” tags, they are missing a “single symbol”

adjust those and it shold be alright, happy coding :slight_smile: