Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

The span element inside the rating paragraph should have ten stars, either filled in (:star:) 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

GitHub Link: https://github.com/freeCodeCamp/freeCodeCamp/blob/main/curriculum/challenges/english/blocks/lab-movie-review-page/67ef8f695db52583424bd118.md

Hi @SimbaBrynMahaja,

Is your numerical value after the span enclosed in parentheses?

Are you using the stars from the instructions?

Happy coding

I had to rethink my thinking, ‘parentheses’ or ‘parenthesis’. I got there in the end. However, I reckon the ‘stars’ will be learnt in CSS then.

Thanks again

The stars can just be copied/pasted from the instructions.

Of course, that’s how I did it. Except that inserting such stars would be part of CSS; is that true?

no, CSS is a specific language, you will learn more about that once you finish the HTML section

Your “stars” are just asterisks. They were not copied from the instructions.

There is no CSS in this challenge.

The challenge has been completed, thanks again. I didn’t know how to insert ‘asterisks’, except for the copy and paste.

Many thanks