Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Lewis Alonso
217 PointsTask Challenge Question- Front-End Development
Stuck in this question, Here is the question "Create the HTML element that will serve as the document root." I put a header, style, head, section and is not working. Maybe I'm not putting it down the right way. Anyhelp will be appreciated. Thanks
2 Answers

Michael Wooff
9,026 Pointsopening and closing the html element is all you need to do...
<!DOCTYPE HTML>
<html>
</html>

Andrew McCombs
4,309 Points<DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"> //only if you need it for the code challenge. Not sure
<title>Document</title>
</head>
<body> or <section>
</body> or </section>
</html>
You didn't provide a link to i could not test it. If you would like to post the link ill get the answer for you..

Lewis Alonso
217 Pointsi wasn't closing the html element, thank you however.
Lewis Alonso
217 PointsLewis Alonso
217 Pointsthank you. it really helped.