Week 4 Overview | Basic Elements | Document Sectioning | Images | DOM | Worksheet

Wendi's Web - HTML: Elements for Sectioning Content

Review the meaning of semantic elements

Understand the purpose and content of the following document sectioning elements:

<aside> ♿ WCAG 1.3 Adaptable – 1.3.1 Info and Relationships

https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html

</aside>

<main> = a semantic element but technically not part of document sectioning

<header>
   <h1>Accessible Page Title</h1>
</header>

<main>
  <!-- the main content of the page goes here -->
</main>

<footer>
    <address>&copy; 2023 FirstName LastName</address>
</footer>

See the codepen examples of how we sometimes use some of these document sectioning elements