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

0 points
Submitted by iamganesh
over 9 years

6/9 Place your h3, p, and a elements in between opening <div> and closing </div> tags.

<!DOCTYPE html>
<html>
  <body>
  <div class="nav">
  <div class="container">
  
    <ul>
      <li>Ganesh</li>
      <li>Browse</li>
     </ul>
     <ul>
     <li>Sign Up</li>
     <li>Log In</li>
     <li>Help</li>
     </ul>
     </div>
     </div>
     <div class="jumbotron">
     <div class="container">
    
     <h1> Find a Place To Stay </h1>
     <p> Rent from people in over 34,000 cities and 192 countries </p>
    </div>
    </div>
    <h3> Travel </h3>
    <p>From apartments and rooms to treehouses and boats: stay in unique spaces in 192 countries</p>
    <p>
    <a href="#"> See how to travel on Airbnb </a>
    </p>
      </div>
     </div>
    
     
  </body>
</html>

Answer 5462b61a631fe9150b00057a

0 votes

Permalink

This,

</div>
    <h3> Travel </h3>
    <p>From apartments and rooms to treehouses and boats: stay in unique spaces in 192 countries</p>
    <p>
    <a href="#"> See how to travel on Airbnb </a>
    </p>
      </div>
     </div>

should be,

</div>
<div>
    <h3>Travel</h3>
    <p>From apartments and rooms to treehouses and boats: stay in unique spaces in 192 countries.</p>
    <p><a href="#"> See how to travel on Airbnb</a></p>
</div>
points
Submitted by Roy
over 9 years