HTML5 - New Tags Last Updated : 05 Jun, 2025 Comments Improve Suggest changes Like Article Like Report As we know, HTML5 is the latest and most advanced version of HTML (HyperText Markup Language), designed to improve the way web content is structured and presented. It introduces a wide range of new elements—nearly 90% of which are now supported by all major modern browsers—making web development more powerful, efficient, and semantic.These newly introduced tags span across various aspects of web design and functionality, including layout structure, graphics (like <canvas> and <svg>), media playback (<audio>, <video>and enhanced form controls. They help developers write cleaner, more meaningful code, improve user experience, and enhance compatibility across platforms and devices. List of all elements introduced in HTML5HTML TagDescription<article>Represents an independent article with content separate from the rest of the site.<aside>Describes content related to the main object of the web page, but not its main intent.<audio>Used to insert audio into an HTML webpage.<canvas>Used to draw graphics on a web page using JavaScript.<command>Defines a command button for special operations (supported only by Internet Explorer).<datalist>Provides an autocomplete feature for input elements.<details>Used for initially hidden content that can be displayed interactively.<embed>Embeds external multimedia content like audio or video into an HTML document.<figure>Adds self-contained content like illustrations, diagrams, or photos.<footer>Defines a footer containing information like author details and copyright.<header>Contains information related to the title and heading of the content.<hgroup>Groups heading elements (h1-h6) to provide structured heading information.<keygen>Specifies a key-pair generator field in a form for secure user authentication.<mark>Defines marked text to highlight a part of the paragraph.<meter>Defines a scale for measurement with a well-defined range, used as a gauge.<nav>Declares the navigational section of HTML documents.<output>Represents the result of a client-side script calculation.<progress>Represents the progress of a task or download.<ruby>Specifies ruby annotations used in Japanese publications.<section>Defines a section of documents, dividing content into sections and subsections.<time>Displays human-readable date/time and encodes dates/times in a machine-readable form.<wbr>Defines a word break opportunity, used for line breaks in long words.<video>Embeds video content such as movie clips in a document.HTML5 Form TagsHTML TagDescription<datalist>Represents a predefined list for input options.<output>Used as a container to display calculation results or user action outcomes.Graphics TagsHTML TagDescription<canvas> Allows drawing graphics and animations with scripting.<svg> Used for scalable vector graphics.HTML5 Media TagsHTML TagDescription<audio>Defines sound content.<embed>Defines a container for external media or files.<source>Specifies multiple media resources for media elements.<track>Defines text tracks for audio and video files.<video>Defines video content within an HTML document.HTML5 New <input> TypesTypeDescriptioncolorRepresents an input field for selecting a color.dateRepresents an input field for selecting a date.datetimeRepresents a display of full date and time with time zone information.datetime-localRepresents date and time without time zone information.emailRepresents an input field with email pattern validation.monthRepresents an input field to enter a month for a specific year.numberRepresents a field that selects a numeric value only.rangeRepresents a numeric value selector within a specified range.searchRepresents a search field.telRepresents a control to enter a telephone number.timeRepresents a control to enter a time value without time zone.urlRepresents an input field to enter a URL.weekRepresents a selector for a week value in a specific year. Comment More infoAdvertise with us Next Article HTML5 - New Tags M manaschhabra2 Follow Improve Article Tags : HTML HTML5 HTML-Tags HTML-Questions Similar Reads HTML Tutorial HTML stands for HyperText Markup Language. It is the standard language used to create and structure content on the web. It tells the web browser how to display text, links, images, and other forms of multimedia on a webpage. HTML sets up the basic structure of a website, and then CSS and JavaScript 11 min read HTML Interview Questions and Answers HTML (HyperText Markup Language) is the foundational language for creating web pages and web applications. Whether you're a fresher or an experienced professional, preparing for an HTML interview requires a solid understanding of both basic and advanced concepts. Below is a curated list of 50+ HTML 14 min read Top 10 Projects For Beginners To Practice HTML and CSS Skills Learning to code is an exciting journey, especially when stepping into the world of programming with HTML and CSSâthe foundation of every website you see today. For most beginners, these two building blocks are the perfect starting point to explore the creative side of web development, designing vis 8 min read HTML Introduction HTML stands for Hyper Text Markup Language, which is the core language used to structure content on the web. It organizes text, images, links, and media using tags and elements that browsers can interpret. As of 2025, over 95% of websites rely on HTML alongside CSS and JavaScript, making it a fundam 6 min read HTML Tags - A to Z List HTML Tags are fundamental elements used to structure and format content on web pages. They provide instructions to web browsers on how to render text, images, links, and other media.HTML tags are enclosed in angle brackets < > and usually come in pairs: an opening tag and a closing tag. The cl 15+ min read HTML DOCTYPE Declaration HTML DOCTYPE (Document Type Declaration) is an instruction that appears at the beginning of an HTML document, before the <html> tag.Its primary role is to tell the web browser which version of HTML the page is written in, ensuring that the browser renders the content correctly. It is not an HT 4 min read 30+ Web Development Projects with Source Code [2025] Web development is one of the most in-demand career paths in the IT industry, experiencing consistent growth of around 20â25% annually. Whether you're a student starting out or an experienced professional looking to switch or advance your career, it's essential to go beyond theory and demonstrate yo 4 min read Frontend Developer Interview Questions and Answers Frontend development is an important part of web applications, and it is used to build dynamic and user-friendly web applications with an interactive user interface (UI). Many companies are hiring skilled Frontend developers with expertise in HTML, CSS, JavaScript, and modern frameworks and librarie 15+ min read HTML Forms HTML forms, defined using the <form> Tags are essential for collecting user input on web pages. They incorporate a variety of interactive controls such as text fields, numeric inputs, email fields, password fields, checkboxes, radio buttons, and submit buttons. Over 85% of websites rely on for 5 min read HTML Tables HTML (HyperText Markup Language) is the standard markup language used to create and structure web pages. It defines the layout of a webpage using elements and tags, allowing for the display of text, images, links, and multimedia content. As the foundation of nearly all websites, HTML is used in over 10 min read Like