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 trialAnywhere Busu
1,984 PointsHTML-create the html that will serve as the document roots
Create the html that will serve as the document roots
<!Doctype html>
<h1> <h1>
3 Answers
Razvan Balosin
2,383 Points<!DOCTYPE html>
<html></html>
Roberto Alicata
Courses Plus Student 39,959 PointsYou need to create an HTML tag:
<!Doctype html>
<html>
</html>
Jonathan Grieve
Treehouse Moderator 91,253 PointsI'm not entirely sure but I think this means you want to create the html which is the very root tag of the document. The element that is the "parent" of all other elements. You have 2 headings tags there which is content that goes into the body element which i think you'll learn about in a little while.
In the meantime, this is what you're looking for, I think.
<!doctype html>
<html>
</html>