Tell us what’s happening:
I passed every test except 8. From the looks of the preview the test should pass. What am i doing wrong? Any help would be appreciated.
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</h1>
<img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt="Rise Beyond action thriller movie">
<p>Fun Action Thriller Movie</p>
<p><strong>Movie Rating:</strong> <span style = "color: #FEBE10;" aria-hidden="true" font-size: 2rem;"> ★★★★★★★☆☆☆</span> (7/10)</p>
<h2>Cast Members</h2>
<ul>
<li><strong>Peter Mensah</strong> as Governor Gaddo</li>
<li><strong>(Joy Sunday</strong> as Rayowa</li>
<li><strong>Sufe Bradshaw</strong> as Fati</li>
<li><strong>Jimmy Akingbola</strong> as Kachalla</li>
<li><strong>Chike Okonkwo</strong> as Alli</li>
<li><strong>Jimmy Jean Louis</strong> as Modu</li>
<li><strong>Sydelle Noel</strong> as Budu</li>
<li><strong>Allus Barnes</strong> as Tayo</li>
<li><strong>Haley Brooke Walker</strong> as Z</li>
<li><strong>Jordan Wells</strong> as Yaru</li>
<li><strong>Sasha Morfaw</strong> as Aisa</li>
<li><strong>Ricky Schultz</strong> as Professor Schwartz</li>
<li><strong>Miyla Michelle Johnson</strong> as Young Captive</li>
<li><strong>Chris Louis</strong> as Boko Haram Member</li>
<li><strong>Stone Mason</strong> as Buker</li>
<li><strong>Michelle Tedesco</strong> as University Student</li>
<li><strong>Taylor Adams</strong> as Captive</li>
<li><strong>Kara Jean Louis</strong> as Young Z</li>
</ul>
</main>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15
Challenge Information:
Design a Movie Review Page - Design a Movie Review Page
Which test is test 8? What have you tried to investigate why it is failing?
- The span element inside the rating paragraph should have ten stars, either filled in (
) or empty (☆), followed by a numerical value in parentheses after the span
I made one change after a read a review.
I copied the actual stars from the instructions.
Here’s my updated code.
<!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</h1>
<img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt="Rise Beyond action thriller movie">
<p>Fun Action Thriller Movie</p>
<p><strong>Movie Rating:</strong> <span style = "color: #FEBE10;font-size: 2rem;" aria-hidden="true" > ⭐⭐⭐⭐⭐⭐⭐⭐⭐☆ </span>(9.2/10)</p>
<h2>Cast Members</h2>
<ul>
<li><strong>Peter Mensah</strong> as Governor Gaddo</li>
<li><strong>(Joy Sunday</strong> as Rayowa</li>
<li><strong>Sufe Bradshaw</strong> as Fati</li>
<li><strong>Jimmy Akingbola</strong> as Kachalla</li>
<li><strong>Chike Okonkwo</strong> as Alli</li>
<li><strong>Jimmy Jean Louis</strong> as Modu</li>
<li><strong>Sydelle Noel</strong> as Budu</li>
<li><strong>Allus Barnes</strong> as Tayo</li>
<li><strong>Haley Brooke Walker</strong> as Z</li>
<li><strong>Jordan Wells</strong> as Yaru</li>
<li><strong>Sasha Morfaw</strong> as Aisa</li>
<li><strong>Ricky Schultz</strong> as Professor Schwartz</li>
<li><strong>Miyla Michelle Johnson</strong> as Young Captive</li>
<li><strong>Chris Louis</strong> as Boko Haram Member</li>
<li><strong>Stone Mason</strong> as Buker</li>
<li><strong>Michelle Tedesco</strong> as University Student</li>
<li><strong>Taylor Adams</strong> as Captive</li>
<li><strong>Kara Jean Louis</strong> as Young Z</li>
</ul>
</main>
</body>
</html>
Do you have anything inside of that span that the instructions did not ask for?
I removed the styles and any characters that were not asked for.
Here’s the updated code:
<!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</h1>
<img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt="Rise Beyond action thriller movie">
<p>Fun Action Thriller Movie</p>
<p><strong>Movie Rating:</strong> <span aria-hidden="true" >⭐⭐⭐⭐⭐⭐⭐⭐⭐☆ </span>(9.2/10)</p>
<h2>Cast Members</h2>
<ul>
<li><strong>Peter Mensah</strong> as Governor Gaddo</li>
<li><strong>(Joy Sunday</strong> as Rayowa</li>
<li><strong>Sufe Bradshaw</strong> as Fati</li>
<li><strong>Jimmy Akingbola</strong> as Kachalla</li>
<li><strong>Chike Okonkwo</strong> as Alli</li>
<li><strong>Jimmy Jean Louis</strong> as Modu</li>
<li><strong>Sydelle Noel</strong> as Budu</li>
<li><strong>Allus Barnes</strong> as Tayo</li>
<li><strong>Haley Brooke Walker</strong> as Z</li>
<li><strong>Jordan Wells</strong> as Yaru</li>
<li><strong>Sasha Morfaw</strong> as Aisa</li>
<li><strong>Ricky Schultz</strong> as Professor Schwartz</li>
<li><strong>Miyla Michelle Johnson</strong> as Young Captive</li>
<li><strong>Chris Louis</strong> as Boko Haram Member</li>
<li><strong>Stone Mason</strong> as Buker</li>
<li><strong>Michelle Tedesco</strong> as University Student</li>
<li><strong>Taylor Adams</strong> as Captive</li>
<li><strong>Kara Jean Louis</strong> as Young Z</li>
</ul>
</main>
</body>
</html>
Ok, but you did not answer my question.
I made adjustments and now passed. Thank you so much for your help.
1 Like