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 trialJessica Jones
216 Pointshtml element
What am I doing wrong?
Create the HTML element that will serve as the document root. Bummer! Make sure you define the HTML tag for the document root. PreviewRecheck work index.html
<!DOCTYPE html> <html>
2 Answers
Pedro Cabral
Full Stack JavaScript Techdegree Student 23,916 PointsWhat you have so far is the doctype, you need the opening and closing tags for the html element, which represents the root of a document:
<html>
</html>
Jessica Jones
216 PointsI had the opening but I didn't have the closing. Thanks