Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

Hi colleagues, I’m here again. I’m stucked here. Is there anything am missing.

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>Oppenheimer (2023)</h1>
        <img src="https://picsum.photos/id/201/800/450" alt="Oppenheimer poster">
        <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>
        <p><strong>Movie Rating:</strong><span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐</span>9/10</p>
        <h2>Cast Members</h2>
        <ul>
            <li><strong>Mathew burb as Nevin</strong></li>
            <li><strong>Mark lens as fulkrug</strong></li>
            <li><strong>Fintri Luka as Hull</strong></li>
        </ul>
    </main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 26_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/149.0.7827.45 Mobile/15E148 Safari/604.1

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

GitHub Link: https://github.com/freeCodeCamp/freeCodeCamp/blob/main/curriculum/challenges/english/blocks/lab-movie-review-page/67ef8f695db52583424bd118.md

Hi @Oiinkeya90,

The messages from running the tests are pretty clear:

  1. 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.
  2. Each li should contain a strong element for the actor name followed by the corresponding character name preceded by the text as. (e.g., James Holloway as Ethan Carter).

The first one says you need parentheses around the numerical value after the span.
The second says you should wrap only the actor name with the strong element.

Hope that helps…

Happy coding