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 trialSimingaye Dube
2,587 PointsNow add the two tags that should always be nested within the <html></html> element.
Now add the two tags that should always be nested within the <html></html> element.
<!doctype html>
<html lang="en"
<head>MIND</head>
<body>
LOVE
</body>
</html>
7 Answers
Daron Anderson
2,567 PointsNow add the attribute to the HTML tag that's always required, and two tags that should always be nested within the <html></html> element. Is concise.
Daryl Carr
18,318 PointsYou need to close your
<html lang="en"
should be
<html lang="en">
Daron Anderson
2,567 Pointsthats crap not a concise question.
Daron Anderson
2,567 PointsThis is not a concise question..... There a lots of tags that are nested within the HTML Doc..
Daron Anderson
2,567 PointsThat would be called an attribute. Like a language Attribute.
Roberto Rivera
10,832 Points<!DOCTYPE HTML> <html> <head>
</head> <body> </body> </html>
CSL Team
Courses Plus Student 9,943 PointsThis should work <!DOCTYPE HTML> <html> <head>
</head> <body> </body> </html>
ROBERT BUTLER
2,010 Points<!DOCTYPE HTML> <html> <head></head> <body></body> </html>