Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Why my HTMl isn't correctly? (HTMl / Bootstrap)

I've been receiving this error:

"Oops, try again. Make sure the

<div class="neighborhood-guides">..</div>``` is after the jumbotron"

```html
   <div class="jumbotron">
        <div class="neighborhood-guides">
            <div class="container">
                <h2>Neighborhood Guides</h2>
                <p>Not sure where to stay? We've created neighborhood guides for cities all around the world.</p>
                 <div class="row">
                   <div class="col-md-4"></div>
                   <div class="col-md-4"></div>
                   <div class="col-md-4"></div>
                 </div>
            </div>            
        </div>
    </div>

I really understand the error but I can not see where I have the mistake.

can you post a link to the challenge?

2 Answers

you have your neighborhood guides in the wrong place. task 1 states: Between the <div class="jumbotron">..</div> section and the <div class="learn-more"> section, add a div element with the class "neighborhood-guides"

it needs to look like this:

<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>
        <a href="#">Learn More</a>
      </div>
</div> 

 <div class="neighborhood-guides">
            <div class="container">
                <h2>Neighborhood Guides</h2>
                <p>Not sure where to stay? We've created neighborhood guides for cities all around the world.</p>
                 <div class="row">
                   <div class="col-md-4"></div>
                   <div class="col-md-4"></div>
                   <div class="col-md-4"></div>
                 </div>
            </div>            
 </div>

<div class="learn-more">

see how the neighborhood guides div is between the jumbtron class div and the learn more div? you had yours INSIDE the neighborhood guides div before, its not supposed to go there

hahaha I felt so stupid, thank you my friend.