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

MARISSA ESTRADA
MARISSA ESTRADA
746 Points

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

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

1 Answer

Cleo Pelte
Cleo Pelte
1,156 Points

I guess they mean <header> <main> <footer>. These are the tags to commonly structure a pages content visible to the user (unlike for example everything that is written in the <head>-tag).

Cleo Pelte nailed it! The <body> of our website usually gets broken into three sections or segments:

  • <header> - where we find the introductory and navigation components
  • <main> - where we find the main written or visual content for the page
  • <footer> - where we find bottom links, navigation, and important business information

Not all pages use this strict sectioning, but it gives us a good way to think about best practices in web design. This can even be referred to as a design pattern, as it represents a commonly held method or approach to structuring website information.