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

HTML

Task 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

opening and closing the html element is all you need to do...

<!DOCTYPE HTML> <html> </html>

thank you. it really helped.

<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..

i wasn't closing the html element, thank you however.