Performance: Header, footer, main
LOW IMPACT
Using semantic elements like header, footer, and main helps browsers render content faster by improving document structure and accessibility.
<header>...</header> <main>...</main> <footer>...</footer>
<div id="header">...</div> <div id="content">...</div> <div id="footer">...</div>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Generic divs for layout | Minimal | Minimal | Minimal | [!] OK |
| Semantic header, main, footer | Minimal | Minimal | Minimal | [OK] Good |