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

0 points
over 8 years

7/9 Why won't this work? it keeps on saying at a second supporting content div

<div class="jumbotron">
 <div class="container">
    <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</p>
 </div>
</div>

<div class="jumbotron">
 <div class="container">
    <h3>Host</h3>
        <p>Renting out your unused space could pay your bills or fund your next vacation</p>
        <p><a href="#">learn more about hosting</p>
 </div>
</div>

<div class="jumbotron">
 <div class="container">
    <h3>Trust and Safety</h3>
        <p>From Verifed ID to our worlwide customer support team, we've got your back</p>
        <p><a href="#">Learn about trust at Airbnb</p>
 </div>
</div>
    
  </body>
</html>

Answer 55e71b1f86f552e6d3000555

0 votes

Permalink

Hi luiscrestrepo,

This exercise is only expecting one jumbotron, you have three there.

Here is the overall plan that you are aiming for:

<!DOCTYPE html>
<html>
  <body>

    <div class="nav">
      <div class="container">
      ... your nav code goes in here
      </div>
    </div>

    <div class="jumbotron">
      <div class="container">
      ... your jumbotron code goes in here
      </div>
    </div>
    
    <div>
      ... your Travel code goes in here
    </div>
    <div>
      ... your Host code goes in here
    </div>
    <div>
      ... your Trust code goes in here
    </div>

  </body>
</html>
points
Submitted by Judy
over 8 years