Semantic elements provide meaning to the structure of your web pages.
<!-- Header of the document -->
<header></header>
<!-- Navigation links -->
<nav></nav>
<!-- Main content -->
<main></main>
<!-- Footer of the document -->
<footer></footer>
Iframes are used to embed another HTML page within a page.
<iframe src="https://www.google.com" width="300" height="200"></iframe>
HTML5 allows you to embed audio and video files directly into web pages.
<!-- Audio -->
<audio controls>
<source src="audio.mp3" type="audio/mp3">
</audio>
<!-- Video -->
<video controls>
<source src="video.mp4" type="video/mp4">
</video>
Advanced form elements like sliders, date pickers, and more.
<!-- Range Slider -->
<input type="range" min="0" max="100" step="1">
<!-- Date Picker -->
<input type="date">
<!-- Color Picker -->
<input type="color">
Ready to learn more? Check out these free resources:
- Mozilla Developer Network's Advanced HTML Guide
- W3Schools Advanced HTML Tutorial
- FreeCodeCamp's HTML Course