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

What is header?

How come header is not seen by user's event though it contains crucial information such as title as well as the purpose of web site

1 Answer

Steven Parker
Steven Parker
230,970 Points

Be careful not to confuse <head> and <header>. The <header> is a semantic container element, and it is visible on the page.

But the <head> section contains information for the browser primarily for loading resources and setting parameters. It can optionally contain a <title> element which most browsers will display, but up at the top of the browser window instead of in the page area.