This page lists all the HTML elements, which are created using tags. They are grouped by function to help you find what you have in mind easily. An alphabetical list of all elements is provided in the sidebar on every element's page as well as this one.
For more information about the basics of HTML elements and attributes, see the section on elements in the Introduction to HTML article.
Main root
Element | Description |
---|---|
<html> |
Document metadata
Metadata contains information about the page. This includes information about styles, scripts and data to help software (search engines, browsers, etc.) use and render the page. Metadata for styles and scripts may be defined in the page or link to another file that has the information.
Element | Description |
---|---|
<base> |
|
<head> |
|
<link> |
|
<meta> |
|
<style> |
|
<title> |
Sectioning root
Element | Description |
---|---|
<body> |
Content sectioning
Content sectioning elements allow you to organize the document content into logical pieces. Use the sectioning elements to create a broad outline for your page content, including header and footer navigation, and heading elements to identify sections of content.
Element | Description |
---|---|
<address> |
|
<article> |
|
<aside> |
|
<footer> |
|
<header> |
|
<h1> , <h2> , <h3> , <h4> , <h5> , <h6> |
|
<hgroup> |
|
<main> |
|
<nav> |
|
<section> |
Text content
Use HTML text content elements to organize blocks or sections of content placed between the opening <body>
and closing </body>
tags. Important for accessibility and SEO, these elements identify the purpose or structure of that content.
Element | Description |
---|---|
<blockquote> |
|
<dd> |
|
<div> |
|
<dl> |
|
<dt> |
|
<figcaption> |
|
<figure> |
|
<hr> |
|
<li> |
|
<ol> |
|
<p> |
|
<pre> |
|
<ul> |
Inline text semantics
Use the HTML inline text semantic to define the meaning, structure, or style of a word, line, or any arbitrary piece of text.
Element | Description |
---|---|
<a> |
|
<abbr> |
|
<b> |
|
<bdi> |
|
<bdo> |
|
<br> |
|
<cite> |
|
<code> |
|
<data> |
|
<dfn> |
|
<em> |
|
<i> |
|
<kbd> |
|
<mark> |
|
<q> |
|
<rb> |
|
<rp> |
|
<rt> |
|
<rtc> |
|
<ruby> |
|
<s> |
|
<samp> |
|
<small> |
|
<span> |
|
<strong> |
|
<sub> |
|
<sup> |
|
<time> |
|
<u> |
|
<var> |
|
<wbr> |
Image and multimedia
HTML supports various multimedia resources such as images, audio, and video.
Element | Description |
---|---|
<area> |
|
<audio> |
|
<img> |
|
<map> |
|
<track> |
|
<video> |
Embedded content
In addition to regular multimedia content, HTML can include a variety of other content, even if it's not always easy to interact with.
Element | Description |
---|---|
<embed> |
The HTML <embed> element embeds external content at the specified point in the document. This content is provided by an external application or other source of interactive content such as a browser plug-in. |
<iframe> |
|
<object> |
|
<param> |
|
<picture> |
|
<source> |
Scripting
In order to create dynamic content and Web applications, HTML supports the use of scripting languages, most prominently JavaScript. Certain elements support this capability.
Element | Description |
---|---|
<canvas> |
|
<noscript> |
|
<script> |
Demarcating edits
These elements let you provide indications that specific parts of the text have been altered.
Element | Description |
---|---|
<del> |
|
<ins> |
Table content
The elements here are used to create and handle tabular data.
Element | Description |
---|---|
<caption> |
|
<col> |
|
<colgroup> |
|
<table> |
|
<tbody> |
|
<td> |
|
<tfoot> |
|
<th> |
|
<thead> |
|
<tr> |
Forms
HTML provides a number of elements which can be used together to create forms which the user can fill out and submit to the Web site or application. There's a great deal of further information about this available in the HTML forms guide.
Element | Description |
---|---|
<button> |
|
<datalist> |
|
<fieldset> |
|
<form> |
|
<input> |
|
<label> |
|
<legend> |
|
<meter> |
|
<optgroup> |
|
<option> |
|
<output> |
|
<progress> |
|
<select> |
|
<textarea> |
Interactive elements
HTML offers a selection of elements which help to create interactive user interface objects.
Element | Description |
---|---|
<details> |
|
<dialog> |
|
<menu> |
|
<summary> |
Web Components
Web Components is an HTML-related technology which makes it possible to, essentially, create and use custom elements as if it were regular HTML. In addition, you can create custom versions of standard HTML elements.
Element | Description |
---|---|
<slot> |
|
<template> |
Obsolete and deprecated elements
Warning: These are old HTML elements which are deprecated and should not be used. You should never use them in new projects, and should replace them in old projects as soon as you can. They are listed here for informational purposes only.