Design a Movie Review Page - Design a Movie Review Page

Tell us what’s happening:

You should have a span element within your rating paragraph,your span element should contain stars filled or not,the span element in your rating paragraph should have an aria attribute set to true and your character names should be contained in a strong element.

This are the reasons my code wont verify.Can someone 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
    </br>
  
  </h1>
  <img src="https://cdn.freecodecamp.org/curriculum/labs/rise-beyond-2.png" alt= "three young men in a movie theatre stage observing a big rising beyond movie cover ">

<p>Rise beyond is a music based movie where a young man obtains the chance to play his music on international stage and make a movie too showing his struggles until his big win </p>

  <p><strong>Movie Rating:</strong>
  <p class="rating-container" aria-label="Rating: 7 out of 10 stars"><span class="stars" aria-hidden="true">⭐⭐⭐⭐⭐⭐⭐☆☆☆</span>
 <span class="rating-value"
 aria-hidden="true">(7/10)</span>
</p>

<h2>Cast Members</h2>

<ul>
<li><strong>Chezidek as Guru 1</strong>
</li>
<li><strong>Lutan as JahMan</strong></li>
<li><strong>James Holloway as Ethan Carter</strong></li>
</ul>



</main>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36

Challenge Information:

Design a Movie Review Page - Design a Movie Review Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-movie-review-page/67ef8f695db52583424bd118.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @Allan1,

Please carefully review User Story #5 and follow the directions exactly as asked. Only add the elements asked and nothing more.

And in User Story #8, where does it say the “as ” text should go?

Happy coding

your span element should contain 10 stars filled or not.My stars are all filled and the span element is followed by a numerical value of 10 in parenthesis like they ask but this step wont verify still…

Here’s an excerpt from User Story #5:

You should have another p element to display the movie rating. Within it, you should have these items in the listed order:

You have a strong element.
You have another p element.
You have two span elements.

How many elements is User Story #5 asking for?

I just got it thanks dhess