Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

I’ve read multiple people that have issues with this particular section, Section 8. I have tried all many of changes based on the problems they were having but it’s still an error. Please tell me why.

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>
 <main>
     <h1>Movie Title</h2>
     <img src="img1.png" alt="pic of img1">
     <p>Movie Description</p>
     <p><strong>Movie Rating: </strong><span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐</span> (10)</p>
     <h2>Cast Members</h2>
        <ul>
            <li><strong>Actor One</strong> as Man One</li>
            <li><strong>Actor Two</strong> as Man Two</li>
        </ul>
    
    

 <body>

 </body>
 </main>
 </html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:142.0) Gecko/20100101 Firefox/142.0

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

I changed “(10)” to “(10/10)”. I saw one other person put it in like that but couldn’t get Section 8 to work either but I thought I’d try it. This was very poorly written and it took random changes to make it work.

did you copy the starts from the description? if use a different character it’s not going to pass

Hi @bkarlan

A numerical value, representing the rating, in parentheses (e.g. 9.2/10) after the span.

Try using the rating format in the example.

Happy coding