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 trialMARISSA ESTRADA
746 PointsWhich 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
1,156 PointsI 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).
Chris Adams
553 PointsChris Adams
553 PointsCleo Pelte nailed it! The
<body>
of our website usually gets broken into three sections or segments: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.