Tell us what’s happening:
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.
How can I get those colorful stars on my old pc? I could only get ten multiplication signs. Can someone advise?
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 - Rise to the Occasion</h1>
<img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt="With one guiter under his right arm, another on standby behind, a young man faces the city's spotlight as onlookers look on up">
<p>What if rising to the occasion is what just matters? It was almost the last chance one could ever ask for, only this time it was the only chance he needed. Curtis, a young man who came up against all odds, he was experienced in taking chances, however, this time he needed to rise to the occasion.</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 <strong>Ethan Carter</strong></li>
<li><strong>Bryn Reid</strong> as <strong>Curtis</strong></li>
<li><strong>Cecil Smith</strong> as <strong>George Carter</strong></li>
<li><strong>Carroll Snipes</strong> as <strong>Julie</strong> (Curtis's girlfriend)</li>
</ul>
</p>
</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/149.0.0.0 Safari/537.36
Challenge Information:
Design a Movie Review Page - Design a Movie Review Page