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 How to Make a Website HTML First Use HTML Elements

what does create an html element mean

On a challenge question on create a website.

This means that you should create a HTML tag, in this quiz, the tag should be:

<html>
</html>

2 Answers

Jake Adams
Jake Adams
1,608 Points

Simply put, it just wants you to add <html></html>

Tom Geraghty
Tom Geraghty
24,174 Points

Element is a general term that describes an object in your markup. In HTML these are called nodes or elements or referred to by their tag name such as html, div, p (for paragraph), a (for anchor link), etc.

You nest elements inside of one another to create the structure of your document. Everything goes inside of the html element.