Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

I can’t figure out what the problem with step 15 is. Can you help me, please?

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: F1 the Movie</h1>
     <img src="https://tse4.mm.bing.net/th/id/OIP.sALbq9Zam4i3zudkVITTwQAAAA?cb=ucfimg2ucfimg=1&rs=1&pid=ImgDetMain&o=7&rm=3" alt="Movie poster for the film F1, starring Brad Pitt. It shows Pitt in a racing helmet inside a Formula 1 car. The text reads: ‘Brad Pitt, F1, Only in theaters Summer 2025, Filmed for IMAX."
     />
     <p>The 2025 movie "F1" stars Brad Pitt as Sonny Hayes, a Formula One racing driver who returns after a 30-year absence to save his former teammate's underdog team, APXGP, from collapse. Directed by Joseph Kosinski, the film explores themes of legacy, teamwork, and the joy of speed as Hayes mentors rookie driver Joshua Pearce. The film promises high-octane thrills and a compelling narrative about redemption and racing.</p>
     <p>
         <strong>Movie Rating:</strong>
        <span aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐⭐☆☆</span> (7.8/10)  
     </p>
     <h2>Cast Members</h2>
     <ul>
         <li><strong>Brad Pitt</strong> as Sonny Hayes</li>
         <li><strong>Damson Idris</strong> as 
Joshua Pearce</li>
         <li><strong>Javier Bardem</strong> as Ruben Cervantes</li>
         <li><strong>Kerry Condon</strong> as Kate McKenna</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/139.0.0.0 Safari/537.36 Edg/139.0.0.0

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

Here are some troubleshooting steps you can follow. Focus on one test at a time:

  1. Are there any errors or messages in the console?
  2. What is the requirement of the first failing test?
  3. Check the related User Story and ensure it’s followed precisely.
  4. What line of code implements this?

If this does not help you solve the problem, please reply with answers to these questions.

2 Likes

Your code looks fine overall . The issue is probably with the alt text on your image since you have quotes inside quotes, the validator gets confused. Try removing the inner quotes or replacing them with ". That usually fixes the error at step 15.

1 Like

Thank you for your advice. Unfortunately, none of those solutions worked. In the end, I deleted the <ul>…</ul> part of the code that was causing the error, and instead of copy-pasting repeated elements within the unordered list, I wrote each one separately — and that worked.

3 Likes