Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

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.
can i get help?

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>Movie Review: Rise Beyond</h1>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt="Rise Beyond cover">
      <p>Rise Beyond is an uplifting drama that tells the story of Ethan Carter, a young man from a small town who dreams of becoming a world-class musician. Facing financial struggles and self-doubt, Ethan embarks on a journey of resilience, guided by his mentor Professor Adams and childhood friend Lena Mitchell. Through setbacks, failures, and moments of triumph, Rise Beyond reminds us that our greatest potential lies beyond our fears.</p>
    
      <h2>Cast Members</h2>
        <p>
        <strong>Movie Rating:</strong>
        <span aria-hidden="true">
            ⭐⭐⭐⭐⭐⭐⭐⭐⭐☆
        </span> (9.2/10)
     </p>
      <ul>
          <li><strong>James Holloway</strong> as Ethan Carter</li>
           <li><strong>Olivia Sterling </strong> as Lena Mitchell</li>
            <li><strong>William Lancaster </strong> as Professor Adams</li>
             <li><strong>Maria Collins </strong> as Evelyn Carter (Ethan’s Mother)</li>
      </ul>
  </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/136.0.0.0 Safari/537.36

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

Hello!

You’re supposed to put the rating stuff before the Cast Members h2 element.

In any case, it appears you’re copying the example project.

I wouldn’t recommend that. Instead, you should make your own thing.