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