Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

I get the error that my span has the wrong number of stars (even when asking for a hint). I count ten, 9 filled and one empty. Am I doing something wrong?

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>
            RISE BEYOND
        </h1>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt="Movie poster for Rise Beyond">
        <p>
            Movie about ethan carter
        </p>
        <p><b>Movie Rating:</b>PG-13
            <span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐⭐☆</span> (9/10)
        </p>
        <h2>Cast Members</h2>
        <ul>
            <li><b>James Holloway</b> as Ethan Carter</li>
            <li><b>Destin Guy</b> as Smarter Every Day Guy</li>
            <li><b>Nic Cage</b> as Elvis Presley</li>
            <li><b>Jim Carrey</b> as Edward Nigma</li>
        </ul>
    </main>

</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:153.0) Gecko/20100101 Firefox/153.0

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-movie-review-page/67ef8f695db52583424bd118.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @sandmanjake,

Did the instructions ask you to add the text between the b element and the span element?

Happy coding