HTML & CSS Masterclass Tutorial

Comprehensive guide to modern HTML and CSS development.

Layout Patterns

Common Layout Patterns

By combining CSS Grid, Flexbox, and semantic HTML, we can build standard webpage layouts used by 90% of websites.

The Holy Grail Layout

The "Holy Grail" is a classic web page layout consisting of:

  • A Header at the top.
  • A Main Content area in the middle.
  • Two Sidebars (left and right).
  • A Footer at the bottom.

Using CSS Grid, achieving this layout requires just a few lines of code using grid-template-areas.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics