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 trialHolly Holliday
1,563 PointsQuiz says I'm wrong. It says: Create the HTML element that will serve as a document root. I put <html> <html>. ??
confused?
<!DOCTYPE html>
<html> <html>
1 Answer
Salman Akram
Courses Plus Student 40,065 PointsHi Holly
You need to have end tag of HTML with dash "/" inside, then you can do same with other end tags of header, footer, body, div, span, etc
Begin tag - < HTML >
End tag - < /HTML >
<!DOCTYPE html>
<html> // begin tag
</html> // end tag
Previous thread: https://teamtreehouse.com/forum/i-am-taking-the-quiz-about-how-to-make-a-webpage-it-ask-create-the-html-element-that-will-serve-as-a-document-root-it
Hope that helps.