DEV Community

Syed Muhammad Ali Raza
Syed Muhammad Ali Raza

Posted on

Advanced HTML5 Tags

Learn Advanced HTML5 Tags: Improve Web Development

HTML5, the fifth iteration of the hypertext markup language, introduces a number of advanced features and functions that change the way the web looks. These tags give developers powerful tools to create more interactive, accessible, and engaging websites. In this article, we will look at some of these advanced HTML5 tags and provide practical examples to demonstrate their capabilities.

1. header , nav

The header tag represents the top part of a web page, often containing branding, navigation menus, and other input content. You can use the tag to define a navigation menu inside the , to help with semantic clarity and accessibility.

Implementation:

<header>
    <h1>My Website</h1>
    <nav>
        <ul>
            <li> <a href="#">Home</a> </li>
            <li> <a href="#"> About </a> </li>
            <li> <a href="#">Service</a> </li>
        </ul>
    </nav>
</header>
Enter fullscreen mode Exit fullscreen mode

2. main , article

The "main" tag contains the main content of the web page, while the "" tag is used to represent independent content that can be independently distributed and reused. These tags improve document structure and improve accessibility.

Implementation:

<main>
    <article>
        <h2>Article title</h2>
        <p>This article is about... </p>
    </article>
</main>
Enter fullscreen mode Exit fullscreen mode

3. section , side

The section tag defines a thematic group in a document, helping to organize the content logically. The tag is used to mark content that is directly related to the main content, such as sidebars, quotes, or advertisements.

Implementation:

<section>
    <h2>Section Name</h2>
    <p>The content of this section is... </p>
    <side>
        <h3>Related Links</h3>
        <ul>
            <li> <a href="#">Link 1</a> </li>
            <li> <a href="#">Link 2</a> </li>
        </ul>
    </side>
</section>
Enter fullscreen mode Exit fullscreen mode

4. video , audio

With the "

Implementation:

<video control>
    <source src="video.mp4" type="video/mp4">
    Your browser does not support video tags.
</video>

<volume control>
    <source src="audio.mp3" type="audio/mpeg">
    Your browser does not support sound tags.
</audio>
Enter fullscreen mode Exit fullscreen mode

5. canvas Images and graphics

The tag allows you to create graphics, animations, and interactive visuals using JavaScript. It provides a blank "canvas" to draw shapes, images, and more.

Implementation:

<canvas id="myCanvas" width="400" height="200"></canvas>

<script>
    const canvas = document.getElementById('myCanvas');
    const context = canvas.getContext('2d');
    context.fillStyle = 'blue';
    context.fillRect(50, 50, 100, 100);
</script>
Enter fullscreen mode Exit fullscreen mode

The results

HTML5's advanced markup has changed the way we develop and structure web content. By using these tags, you can create a more accessible, attractive and dynamic website. Whether you're integrating multimedia, managing content, or enhancing interactivity, these tags allow you to push the boundaries of web development and provide a great user experience. As you continue to explore the possibilities of HTML5, you will discover more ways to build great web applications. Happy coding!

Top comments (0)