Large feature 4/9
Large feature
Nice work! We've used ul elements to create a minimal navigation bar, and used divs to organize it into its own section.
Next let's add a large feature to the page with an h1 element, and a subtitle using a pelement.
Instructions
- After the closing 
</div>tag, add an h1element that says "Find a place to stay." - After the h1 element, add a p element that says "Rent from people in over 34,000 cities and 192 countries."
 
<!DOCTYPE html>
<html>
  <body>
  <div class="nav">
  **<h1>Find a place to stay</h1>**
  **<p>Rent from people in over 34,000 cities and 192 countries</p>**
    <div class="container">
    <ul>
      <li>Item 1</li>
      <li>Item 2</li>
    </ul>
    <ul>
      <li>Sign up</li>
      <li>Log in</li>
      <li>Help</li>
    </ul>
    <ul>
  </div>
  </div>
  </body>
</html>
Comments
Post a Comment