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

CSS

John Goulart
John Goulart
11,279 Points

Bootstrap 4 basics. Not sure what im doing wrong.

<div class="container pt-4"> <!-- about --> <div class="row"> <div class="col"> <h3 class= "mb-4">About Full Stack Conf</h3> <img class="mb-4 img-fluid rounded" src="img/pdx.jpg" alt="Portland"> <p>The beautiful city of Portland, Oregon will be the host city for Full Stack Conf!</p> <p>Explore the future of JavaScript with a lineup of industry professionals. Discover new techniques to advance your career as a web developer.</p> </div> <div class="col"> <h3 class= "mb-4">Expert Speakers</h3> <p>Our expert speaker lineup was just announced, so don't wait too long before grabbing your tickets!</p> <p>Want to meet the international JavaScript community and share skills with some of the world's top experts, hackers, and makers? Be the first to know what to expect for the future of JavaScript.</p> <p>Full Stack Conf is committed to being inclusive and welcoming for everyone. We look forward to another intensive day of learning and sharing. </p> </div> <div class="col"> <h3 class= "mb-4">What You'll Learn</h3> <ul> <li><strong>MongoDB</strong>: NoSQL database</li> <li><strong>Express</strong>: Framework for Node</li> <li><strong>React</strong>: JavaScript library</li> <li><strong>Node.js</strong>: JavaScript environment</li> <li><strong>ES2015</strong>: Latest version of JavaScript</li> <li><strong>Babel</strong>: JavaScript compiler</li> </ul> </div> <!-- /about -->

      <!-- speakers -->
      <h1>Speakers</h1>
      <!-- /speakers -->

      <!-- schedule -->
       <h1>Schedule</h1>
      <!-- /schedule -->

  </div> <!-- /.container -->

</div>

John Goulart
John Goulart
11,279 Points

the <h1>speakers</h1> and <h1>Schedule</h1> are showing up to the left of "What you'll learn" instead of underneath of "about full stack conf"