Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

My web page is throwing an error on the 8th parameter. I tried adding the single space after element with no luck. What am I doing wrong?

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>Good Boy</h1>
        <img src="https://upload.wikimedia.org/wikipedia/en/e/ee/Good_Boy_2025_film_poster.jpg" alt="poster for Good Boy the movie, which features the golden retriever Indy with a disembodied hand over it" />
        <p>Good Boy is a 2025 American supernatural horror film directed by Ben Leonberg, in his feature directorial debut, co-written by Leonberg and Alex Cannon. Starring Shane Jensen, Arielle Friedman, Larry Fessenden and Leonberg's real-life dog Indy in the titular role, the film follows a haunted house from the perspective of a dog.</p>
        <p>
        <strong>Movie Rating:</strong>
        <span aria-hidden="true" >&#9733;&#9733;&#9733;&#9733;&#9733;&#9733;&#9733;&#9733;&#9733;&#9734;</span>(9/10)
        </p>
        <h2>Cast Members</h2>
            <ul>
                <li><strong>Indy</strong> as himself</li>
                <li><strong>Shane Jensen</strong> as Todd</li>
                <li><strong>Arielle Friedman</strong> as Todd's sister</li>
                <li><strong>Larry Fessenden</strong> as Todd's grandfather</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/140.0.0.0 Safari/537.36

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-movie-review-page/design-a-movie-review-page

Welcome to the forum @natsob

Try copying and pasting the stars from the user story.

Happy coding

I see! Thanks, solved!

1 Like