HTML Element Structure

Example demonstrating a simple HTML content structure.

Preview

Code

<header>
  <h1>Website Title</h1>
</header>

<main>
  <p>This is the main content area.</p>
</main>

<footer>
  <p>Footer information</p>
</footer>

More HTML Elements Examples (7)