Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

Four tests are not passing and I don’t know why. Other learners in the forum also have the same problem. I think there is a problem in the test system.

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 Imitation Game</h1>
 <img src="https://th.bing.com/th/id/OIP.oD7aX8ehTZrv5w9qedVw0gHaKa?w=194&h=273&c=7&r=0&o=5&dpr=2&pid=1.7" alt="The Imitation Game Cover">
 <p>Based on the real-life story of Alan Turing, a brilliant British mathematician and logician, The Imitation Game explores his role in cracking the Nazi Enigma code during World War II. Turing’s work is credited with shortening the war and saving millions of lives.<p/>
  <p>
    <strong>Movie Rating: </strong>
    <span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐☆☆ </span>(8/10)</p>
     <h2>Cast Members</h2>
     <ul>
         <li><strong>Benedict Cumberbatch</strong> as Alan Turing</li>
         <li><strong>Keira Knightley</strong> as Joan Clarke</li>
         <li><strong>Matthew Goode</strong> as Hugh Alexander</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

Looks like you have a malformed closing tag here.

In general, while debugging, I always assume my code is wrong.

1 Like

Thanks ! 3 worked still one ! I think next time I should put my code on VS code to see these small typos :sweat_smile:.

try putting the p all on one line, and adding a space after the span with stars

Do you have anything in the span that is not a star?

1 Like

Good idea about using VS Code. Not only does it call out a malformed tag, it also autocompletes closing tags for you. I often do my projects in VS Code then copy the code into the fCC UI when I think it’s ready to test.

1 Like

Can you do provide your code ?

So that we all will be able to help you.

Yeah it was a empty space. I deleted it and it worked! Thank you ! I was so blind :sweat_smile: