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 trialTom Tanaka
361 PointsWhat 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
231,198 PointsBe 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.