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 …i cant get passed stage 8

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="Rise Beyond"/>
        <p>Rise Beyond is a movie by James Holloway.It has alot of features and it is a movie you would enjoy so much....Pls after watching kindly brief us on your expercience and give us a feedback....xoxo</p>
        <p><strong>Movie Rating</strong><span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐</span> (10/10)</p>
         <h2>Cast Members</h2>
    <ul>
        <li><strong>Cary Elwes</strong> as Westley</li>
        <li><strong>Robin Wright</strong> as Buttercup</li>
        <li><strong>Mandy Samson</strong> as Inigo Montoya</li>
        <li><strong>Andre   Gia</strong> as Fezzik</li>
        <li><strong>Wallace Shawn</strong> as Vizzini</li>
        <li><strong>Chris Sandra</strong> as Prince Humperdink</li>
        <li><strong>Christopher Biggie</strong> as Count Rugen</li>
        <li><strong>Billy Crystal</strong> as Miracle Max</li>
        <li><strong>Peter Falk</strong> as Grandpa</li>
        <li><strong>Fred Savage</strong> as Grandson</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 Edg/136.0.0.0

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

The stars test is failing because it depends on the content of <strong>Movie Rating</strong> containing a colon and space. So it should be <strong>Movie Rating: </strong>


There is an issue open for this already.

i did that already my issue is with the: . 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

I think you did not understand the message above, the test is failing because it is also checking the content of the span and it expects a different content, as written above