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.

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: The Princess Bride</h1>
    <img src="https://mediaproxy.tvtropes.org/width/1200/https://static.tvtropes.org/pmwiki/pub/images/princess_bride_poster.png" alt="princess-bride-movie-poster" width="400">
    <p><em>The Princess Bride</em> is a charming fantasy movie that has something for everyone. Do you enjoy a good adventure? Check. Romance more your thing? It's got it. Love a good action adventure? Look no further. Based on the book by William Goldman of the same name, <em>The Princess Bride</em> has it all. It holds true to the original text, while respectfully changing elements of the story to be better suited for the Big Screen. The cast of the film really shines!</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 Patinkin</strong> as Inigo Montoya</li>
        <li><strong>Andre the giant</strong> as Fezzik</li>
        <li><strong>Wallace Shawn</strong> as Vizzini</li>
        <li><strong>Chris Sarandon</strong> as Prince Humperdink</li>
        <li><strong>Christopher Guest</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

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

Hi @azharfaturrahman9 and welcome to our community!

Your p element currently displays as:

Movie Rating⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐(10/10)

You are missing a colon and you should also insert a space between the strong and span elements and also before the numerical score.