Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

I’m not sure what’s incorrect. I add the review rating after the span in parenthesis and it’s still saying that it’s wrong. What am I not understanding?

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>Movie Review</title>
  </head>
  <body>
    <main>
      <h1>KPop Demon Hunters</h1>
      <img
        src="https://upload.wikimedia.org/wikipedia/en/9/93/KPDHposter.jpeg"
        alt="On a platform, members of Huntrix (from left to right: Mira, Rumi, and Zoey) as Demon Hunters, stand on a stage holding combat weapons with a larger digital banner showing them in their normal outfits promoting the band's world tour appearing behind them. The skyline of Seoul, including the N Seoul Tower, is seen in the background."
      />
      <p>
        When K-pop superstars Rumi, Mira and Zoey aren't selling out stadiums or
        topping the Billboard charts, they're moonlighting as demon hunters to
        protect their fans from ever-present supernatural danger.
      </p>
      <p>
        <strong>Movie Rating: </strong>
        <span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐ (9.2/10)</span>
        
      </p>
      <h2>Cast Members</h2>
      <ul>
        <li><strong>Arden Cho</strong> as Rumi</li>
        <li><strong>May Hong</strong> as Mira</li>
        <li><strong>Ji-young Yoo</strong> as Zooey</li>
        <li><strong>Ahn Hyo-seop</strong> as Jinu</li>
        <li><strong>Yunjin Kim </strong> as Celine</li>
        <li><strong>Ken Jeong</strong> as Bobby</li>
        <li><strong>Lee Byung-hun</strong> as Gwi-Ma</li>
        <li><strong>Daniel Dae Kim</strong> as Healer Han</li>
        <li><strong>Joel Kim Booster</strong> as Romance Saja</li>
        <li><strong>Alan Lee </strong> as Mystery Saja</li>
        <li><strong>SungWon Cho</strong> as Abs Saja</li>
        <li><strong>Liza Koshy</strong> as Host</li>
        <li>
          <strong>Maggie Kang</strong> as Flight Attendant Demon and Crying
          Demon
        </li>
      </ul>
    </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/137.0.0.0 Safari/537.36

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

https://www.freecodecamp.org/learn/full-stack-developer/lab-movie-review-page/design-a-movie-review-page

What does it say exactly?

Here are some troubleshooting steps you can follow. Focus on one test at a time:

  1. Are there any errors or messages in the console?
  2. What is the requirement of the first failing test?
  3. Check the related User Story and ensure it’s followed precisely.
  4. What line of code implements this?

If this does not help you solve the problem, please reply with answers to these questions.

Sorry, I accidentally deleted:

It says that :

The span element inside the rating paragraph should have ten stars, either filled in (:star:) or empty (☆), followed by a numerical value in parentheses after the span.

Thank you. I realized I accidentally had 11 stars and not 10.

11/10, must be a good movie!