This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Blake Burris
almost 10 years

6/10 [resolved] Place your h1 element and p element in between .. tags.

I can’t seem to figure out how to format the html and keep getting the following error message. My code is below. What am I doing wrong?

Oops, try again. Place your h1 element and p element in between <div class="container">..</div> tags.

<!DOCTYPE html>
<html>
  <body>
  <div class="nav">
    <div class="container">
    <ul>
      <li>Blake</li>
      <li>Browse</li>
    </ul>
    <ul>
      <li>Sign Up</li>
      <li>Log In</li>
      <li>Help</li>
    </ul>
    </div>
  </div>
  
  <div class="jumbotron">
    <div clss="container">
        <h1>Find a place to stay.</h1>
        <p>Rent from people in over 34,000 cities and 192 countries</p>
    </div>
  </div>
  </body>
</html>

Answer 53a6fd87548c3516730042dc

1 vote

Permalink

You’ve got a little typo there Blake. clss="container"

points
Submitted by Judy
almost 10 years

1 comments

Blake Burris almost 10 years

Argh!! Thank you.