HTML5 Introduction (original) (raw)

Last Updated : 13 Dec, 2025

HTML5 is the fifth version of Hypertext Markup Language (HTML), a standard language used to structure webpages. It defines how content on a webpage should be structured and displayed. Here are some key points of HTML5.

Simple HTML Page
<header>
    <h1>Hello, World!</h1>
</header>

<main>
    <p>This is a simple HTML5 page.</p>
</main>

<footer>
    <p>@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved</p>
</footer>

`

New Added Elements in HTML 5

HTML5 introduced several new elements that help structure a webpage better and make it more interactive. These elements not only improve the design but also make the code more readable and accessible. Here are some key elements of HTML5:

Deprecated Elements in HTML5

HTML5 has removed several outdated elements, replacing them with newer, more flexible solutions:

HTML5 Advantages

HTML5 offers several benefits that enhance modern web development like:

HTML5 Disadvantages

Despite its strengths, HTML5 comes with some drawbacks:

Example of HTML5

Here are demonstration of some HTM5 elements:

Adding a Video Using the

HTML `

`

Using the Element for Drawing

HTML `

`

Using the Element to Show Task Progress

HTML `

HTML5 Progress Bar Example

`

Best Practices of Using HTML5

Introduction to Client Side and HTML