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 trialmo ode
4,352 PointsAdd a wrapper <div> around the body.
Add a wrapper <div> around the body. When I'm practicing <div class="container"> I get it right but on this challenge it's completely wrong. WHY? CAN ANYBODY HELP ME?
<!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">
<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>
<footer>
<p>©2015 Residents of The Best City.</p>
</footer>
</div>
</body>
</html>
/* Complete the challenge by writing CSS below */
/* =================================
Base Element Styles
==================================== */
body {
line-height: 1.6;
color: #3a3a3a;
}
h1{
margin-top:0;
}
a {
color: #fff;
text-decoration: none;
}
/* =================================
Base Layout Styles
==================================== */
/* ---- Layout Containers ---- */
.container{
width:70%
margin:0 auto;
}
.main-header {
text-align:center
background: #3acec2;
}
.name{
margin-top:0;
}
.main-footer {
padding: 2em 0;
background: #d9e4ea;
}
/* ---- Page Elements ---- */
1 Answer
KRIS NIKOLAISEN
54,971 PointsYou missed the header. It is also included in the body.