```html

```html HTML Examples static HTML Teaching Guide for Students

Learning HTML!

© 2023 YourName Here. All rights reserved.

Semantic HTML

Using semantic tags helps with the structure and accessibility of your web pages.

What are they?

  • header: A container for introductory content or navigational links, typically at the top of a page.
  • nav: Should be used when you have navigation links on your site. Ideal location is inside an element with either 'role'='navigation' attribute defined in HTML5.
  • main: Represents the main content of a document, and should only contain one major section without sidebars or other distractions for users seeking primary information on your site.

Embedding Multimedia in HTML

"A picture is worth a thousand words," and embedding images, videos or audio directly into your web pages can enhance the user experience.

Embedding Images

<img src="path/to/your/image.jpg" alt="A description of the image">

Use the `src` attribute to specify the path to your image file and provide a meaningful alternative text using `` tag.

Embedding Video

<iframe src="URL_of_the_video" width="640" height="360"></iframe>

Use an `