Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

I’m aware of the issue with spacing and have corrected for it but my code won’t pass.

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 2</h1>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.pgn" alt="a boy standing with his back to us, looking at a city skyline, holding his guitar" />
        <p>In this coming-of-age story a young man with dreams of making it big in the music business takes his chances by leaving home and going to the big city, where he finds plenty to challenge his will power and talent, with some surprises in love.</p>
        <p>
            <strong>Movie Rating: </strong>
            <span aria-hidden="true">⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️</span> (10/10)</p>
        <h2>Cast Members</h2>
        <ul>
            <li>
                <strong>James Holloway</strong> as Ethan Carter</li>
            <li>
                <strong>Mink Stole</strong> as Mrs. Carter</li>
            <li>
                <strong>Kyle Maclachlan</strong> as Mr. Carter</li>
        </ul>
    </main>


</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

Hi. The only thing I did to your code was I cut and paste the stars in the instructions again into your code, and cut and paste a further one to make it up to 10. It passed. See if it works for you.

Thank you! That worked for me, as well.

1 Like