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 trialDomagoj Ćosic
1,936 PointsProblem with challenge Task 1
Is there bug in this challenge or i can't see what am i doing wrong? Sorry for my english :)
<!DOCTYPE html>
<html>
<head>
<title>Getting Started with CSS Layout</title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Best City Guide</h1>
</header>
<div class="container">
<div class="main">
<h2>Welcome!</h2>
<p>Dessert toffee chocolate lollipop fruitcake cake sweet. Pudding cotton candy chocolate pudding liquorice jelly marzipan. Muffin gummies topping lollipop. Caramels chocolate cake donut liquorice.</p>
<p>Cake sesame snaps sweet tart candy canes tiramisu I love oat cake chocolate bar. Jelly beans pastry brownie sugar plum pastry bear claw tiramisu tootsie roll.</p>
</div>
</div>
<footer>
<p>©2015 Residents of The Best City.</p>
</footer>
</body>
</html>
/* Complete the challenge by writing CSS below */
2 Answers
Liam Clarke
19,938 PointsTo clarify what Adam has mentioned, you have added the div container correctly, however you have added it in the wrong place.
Make sure you wrap all the content of the body in the div, like below:
<!DOCTYPE html>
<html>
<head>
<title>Getting Started with CSS Layout</title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="page.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container"> <!-- This is wrapping all the body content -->
<header>
<h1>Best City Guide</h1>
</header>
<div class="main">
<h2>Welcome!</h2>
<p>Dessert toffee chocolate lollipop fruitcake cake sweet. Pudding cotton candy chocolate pudding liquorice jelly marzipan. Muffin gummies topping lollipop. Caramels chocolate cake donut liquorice.</p>
<p>Cake sesame snaps sweet tart candy canes tiramisu I love oat cake chocolate bar. Jelly beans pastry brownie sugar plum pastry bear claw tiramisu tootsie roll.</p>
</div>
<footer>
<p>©2015 Residents of The Best City.</p>
</footer>
</div> <!-- This is the end of the wrap. -->
</body>
</html>
Adam Beer
11,314 PointsAdd a wrapper <div> around the content inside <body>. Give it the class 'container'.
It isn't a bug. You made the <div class="container"></div> to bad place. Hope this help!
Domagoj Ćosic
1,936 PointsOh thanks :) Now I see my mistake.