The number 8 test about the stars is where I am stuck. I have put in the stars the right way and put in the value, but it’s still not working. Please help.
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="a movie cover">
<p>This movie is a Disney + original biographical sports drama that chronicles the inspiring true story of the Antetokounmpo family, focusing on their journey from Nigeria to Greece and their eventual rise to NBA stardom.</p>
<p>
<strong>Movie Rating: </strong>
<span aria-hidden="true">
★★★★★★★★★☆</span> (9.2/10)
</p>
<h2>Cast Members</h2>
<ul>
<li><strong>James Holloway</strong> as Ethan Carter</li>
<li><strong>Lana Lang</strong> as Angelina Jolie</li>
<li><strong>Kira Kosarin</strong> as Phoebe Thunderman</li>
<li><strong>Taylor Swift</strong> as Sarah Kent</li>
<li><strong>Tim Timberlake</strong> as Shoreen Smith</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
Challenge Information:
Design a Movie Review Page - Design a Movie Review Page
Please provide your updated code so we can help you
When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
Please help. I’ve done everything needed to be done but I’m still not able to move forward. What do I do?
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="a movie cover">
<p>This movie is a Disney + original biographical sports drama that chronicles the inspiring true story of the Antetokounmpo family, focusing on their journey from Nigeria to Greece and their eventual rise to NBA stardom.</p>
<p>
<strong>Movie Rating: </strong>
<span aria-hidden="true"> ⭐⭐⭐⭐⭐⭐⭐⭐⭐</span> (9/10)
</p>
<h2>Cast Members</h2>
<ul>
<li><strong>James Holloway</strong> as Ethan Carter</li>
<li><strong>Lana Lang</strong> as Angelina Jolie</li>
<li><strong>Kira Kosarin</strong> as Phoebe Thunderman</li>
<li><strong>Taylor Swift</strong> as Sarah Kent</li>
<li><strong>Tim Timberlake</strong> as Shoreen Smith</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
Challenge Information:
Design a Movie Review Page - Design a Movie Review Page
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 .