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 Introduction to HTML and CSS (2016) HTML: The Structural Foundation of Web Pages and Applications Review: Parts of an HTML Page

Please explain this question

Why is that the answer, and could you please elaborate more on this, the video was a bit fast paced.

Matthew Long
Matthew Long
28,407 Points

Which question? There are 5 in this quiz.

The question is Which tags commonly appear inside the part of a web page that you see in the browser window?

1 Answer

Matthew Long
Matthew Long
28,407 Points

The question is asking you to choose the tags that you can visibly see on a website.

Beginning, middle, and end are not HTML tags so that answer is incorrect. <!DOCTYPE html> is a tag used to tell the browser how to render the page among other things. This answer is incorrect. The <head> tag contains metadata, links to stylesheets, the page title, etc. All of which do not appear in the browser. Therefore, this answer is incorrect.

This leaves <header>, <footer>, and <main>. <header> usually surrounds the navigation and other elements that appear at the top of the site. <footer> usually contains contact information and other elements that appear at the bottom of the site. The <main> tag represents the main content of the <body> tag. You can visibly see the content in these tags.

Hopefully, that clarifies things.