HTML and HTML5?

  • HTML: Older versions, less multimedia support.
  • HTML5: Modern version with support for audio, video, canvas, local storage, and semantic tags.

✔ Example of HTML5 tags:

<video controls>
  <source src="video.mp4" type="video/mp4">
</video>

<article>
  <h2>News Article</h2>
  <p>This is semantic HTML.</p>
</article>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *