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 Bootstrap Basics Responsive Layouts With the Bootstrap Grid Styling Content

Norah Altamimi
Norah Altamimi
882 Points

so my speakers and schedule words are next to the about section on my website and its supposed to be and the bottom

Any Help

Hi Norah,

If you would, fork a copy of your workspace here so that e we can take a look at your code.

If youโ€™re not using workspace, then post a link to your repo (if you have one).

Norah Altamimi
Norah Altamimi
882 Points

<!DOCTYPE html> <html lang="en"> <head> <title>Full Stack Conf</title> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">

</head> <body> <div class="container pt-4"></div> <!--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 class="display-4 text-center">Speakers</h1> [Speaker bios go here] <!--/speakers-->

<!--schedule-->
<h1 class="display-4 text-center">Schedule</h1>
[Confrence schedule goes here]
<!--/schedule-->

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

<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>

</body> </html> Thats My work

1 Answer

Hello, I had the same issue because I've accidentally deleted a closing "/div" tag. So watch out for one of those!