1
html
Represents the root (top-level element) of an HTML document, so it is also referred to as the root element. All other elements must be descendants of this element
MDN
W3C
2
caption
Specifies the caption (or title) of a table, and if used is always the first child of a <table>
MDN
W3C
3
base
Specifies the base URL to use for all relative URLs contained within a document. There can be only one <base> element in a document
MDN
W3C
4
a
Creates a hyperlink to other web pages, files, locations within the same page, email addresses, or any other URL
MDN
W3C
5
button
Represents a clickable button, which can be used in forms or anywhere in a document that needs simple, standard button functionality
MDN
W3C
6
blockquote
Indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element
MDN
W3C
7
dd
Provides the details about or the definition of the preceding term (<dt>) in a description list (<dl>)
MDN
W3C
8
body
Represents the content of an HTML document. There can be only one <body> element in a document
MDN
W3C
9
address
Indicates that the enclosed HTML provides contact information for a person or people, or for an organization
MDN
W3C
10
article
Represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Examples include: a forum post, a magazine or newspaper article, or a blog entry
MDN
W3C
11
col
Defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a <colgroup> element
MDN
W3C
12
colgroup
Defines a group of columns within a table
MDN
W3C
13
head
Contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets
MDN
W3C
14
abbr
Represents an abbreviation or acronym; the optional title attribute can provide an expansion or description for the abbreviation
MDN
W3C
15
b
Draws the reader's attention to the element's contents, which are not otherwise granted special importance
MDN
W3C
16
bdi
Tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding text
MDN
W3C
17
bdo
Overrides the current directionality of text, so that the text within is rendered in a different direction
MDN
W3C
18
br
Produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant
MDN
W3C
19
cite
Describes a reference to a cited creative work, and must include the title of that work
MDN
W3C
20
code
Displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code
MDN
W3C
21
datalist
Contains a set of <option> elements that represent the values available for other controls
MDN
W3C
22
div
The generic container for flow content. It has no effect on the content or layout until styled using CSS
MDN
W3C
23
dl
Represents a description list. The element encloses a list of groups of terms (specified using the <dt> element) and descriptions (provided by <dd> elements). Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs)
MDN
W3C
24
aside
Represents a portion of a document whose content is only indirectly related to the document's main content
MDN
W3C
25
footer
Represents a footer for its nearest sectioning content or sectioning root element. A footer typically contains information about the author of the section, copyright data or links to related documents
MDN
W3C
26
header
Represents introductory content, typically a group of introductory or navigational aids. It may contain some heading elements but also a logo, a search form, an author name, and other elements
MDN
W3C
27
table
Represents tabular data — that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data
MDN
W3C
28
tbody
Encapsulates a set of table row (<tr> elements), indicating that they comprise the body of the table (<table>)
MDN
W3C
29
link
Specifies relationships between the current document and an external resource. This element is most commonly used to link to stylesheets, but is also used to establish site icons (both "favicon" style icons and mobile home screen/app icons) among other things
MDN
W3C
30
data
Links a given content with a machine-readable translation. If the content is time- or date-related, the <time> element must be used
MDN
W3C
31
del
Represents a range of text that has been deleted from a document
MDN
W3C
32
dfn
Indicates the term being defined within the context of a definition phrase or sentence
MDN
W3C
33
em
Marks text that has stress emphasis. The <em> element can be nested, with each level of nesting indicating a greater degree of emphasis
MDN
W3C
34
i
Represents a range of text that is set off from the normal text for some reason. Some examples include technical terms, foreign language phrases, or fictional character thoughts. It is typically displayed in italic type
MDN
W3C
35
ins
Represents a range of text that has been added to a document
MDN
W3C
36
kbd
Represents a span of inline text denoting textual user input from a keyboard, voice input, or any other text entry device
MDN
W3C
37
fieldset
Groups several controls as well as labels (<label>) within a web form
MDN
W3C
38
form
Represents a document section that contains interactive controls for submitting information to a web server
MDN
W3C
39
input
Creates interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent
MDN
W3C
40
dt
Specifies a term in a description or definition list, and as such must be used inside a <dl> element
MDN
W3C
41
figcaption
Represents a caption or legend describing the rest of the contents of its parent <figure> element
MDN
W3C
42
h1
Represents the highest levels of section headings
MDN
W3C
43
h2
Represents the second level of section headings
MDN
W3C
44
h3
Represents the third level of section headings
MDN
W3C
45
td
Defines a cell of a table that contains data. It participates in the table model
MDN
W3C
46
tfoot
Defines a set of rows summarizing the columns of the table
MDN
W3C
47
meta
Represents metadata that cannot be represented by other HTML meta-related elements, like <base>, <link>, <script>, <style> or <title>
MDN
W3C
48
canvas
Draws graphics and animations with either the canvas scripting API or the WebGL API
MDN
W3C
49
mark
Represents text which is marked or highlighted for reference or notation purposes, due to the marked passage's relevance or importance in the enclosing context
MDN
W3C
50
q
Indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by surrounding the text in quotation marks
MDN
W3C
51
rb
Delimits the base text component of a <ruby> annotation, i.e. the text that is being annotated
MDN
W3C
52
rp
Provides fall-back parentheses for browsers that do not support display of ruby annotations using the <ruby> element
MDN
W3C
53
rt
Specifies the ruby text component of a ruby annotation, which is used to provide pronunciation, translation, or transliteration information for East Asian typography. The <rt> element must always be contained within a <ruby> element
MDN
W3C
54
rtc
Embraces semantic annotations of characters presented in a ruby of <rb> elements used inside of <ruby> element. <rb> elements can have both pronunciation (<rt>) and semantic (<rtc>) annotations
MDN
W3C
55
label
Represents a caption for an item in a user interface
MDN
W3C
56
legend
Represents a caption for the content of its parent <fieldset>
MDN
W3C
57
meter
Represents either a scalar value within a known range or a fractional value
MDN
W3C
58
figure
Represents self-contained content, potentially with an optional caption, which is specified using the (<figcaption>) element
MDN
W3C
59
hr
Represents a thematic break between paragraph-level elements: for example, a change of scene in a story, or a shift of topic within a section
MDN
W3C
60
h4
Represents the forth levels of section headings
MDN
W3C
61
h5
Represents the fifth levels of section headings
MDN
W3C
62
h6
Represents the lowest levels of section headings
MDN
W3C
63
details
Creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state
MDN
W3C
64
th
Defines a cell as header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes
MDN
W3C
65
style
Contains style information for a document, or part of a document
MDN
W3C
66
noscript
Defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser
MDN
W3C
67
ruby
Represents a ruby annotation. Ruby annotations are for showing pronunciation of East Asian characters
MDN
W3C
68
s
Renders text with a strikethrough, or a line through it. Use the <s> element to represent things that are no longer relevant or no longer accurate. However, <s> is not appropriate when indicating document edits; for that, use the <del> and <ins> elements, as appropriate
MDN
W3C
69
samp
Encloses inline text which represents sample (or quoted) output from a computer program
MDN
W3C
70
small
Makes the text font size one size smaller (for example, from large to medium, or from small to x-small) down to the browser's minimum font size. In HTML5, this element is reproofed to represent side-comments and small print, including copyright and legal text, independent of its styled presentation
MDN
W3C
71
span
is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang
MDN
W3C
72
strong
Indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render the contents in bold type
MDN
W3C
73
optgroup
Group of option
MDN
W3C
74
option
Creates a grouping of options within a <select> element
MDN
W3C
75
output
A container element into which a site or app can inject the results of a calculation or the outcome of a user action
MDN
W3C
76
li
Represents an item in a list. It must be contained in a parent element: an ordered list (<ol>), an unordered list (<ul>), or a menu (<menu>). In menus and unordered lists, list items are usually displayed using bullet points. In ordered lists, they are usually displayed with an ascending counter on the left, such as a number or letter
MDN
W3C
77
ol
Represents an ordered list of items, typically rendered as a numbered list
MDN
W3C
78
hgroup
Represents a multi-level heading for a section of a document. It groups a set of <h1>–<h6> elements
MDN
W3C
79
nav
Represents a section of a page whose purpose is to provide navigation links, either within the current document or to other documents. Common examples of navigation sections are menus, tables of contents, and indexes
MDN
W3C
80
section
Represents a standalone section — which doesn't have a more specific semantic element to represent it — contained within an HTML document
MDN
W3C
81
dialog
Represents a dialog box or other interactive component, such as an inspector or window
MDN
W3C
82
thead
Defines a set of rows defining the head of the columns of the table
MDN
W3C
83
title
Defines the document's title that is shown in a browser's title bar or a page's tab
MDN
W3C
84
script
Embeds or reference executable code; this is typically used to embed or refer to JavaScript code
MDN
W3C
85
sub
Specifies inline text which should be displayed as subscript for solely typographical reasons
MDN
W3C
86
sup
Specifies inline text which is to be displayed as superscript for solely typographical reasons
MDN
W3C
87
time
Represents a specific period in time
MDN
W3C
88
u
Represents a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation
MDN
W3C
89
var
Represents the name of a variable in a mathematical expression or a programming context
MDN
W3C
90
wbr
Represents a word break opportunity—a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location
MDN
W3C
91
progress
Displays an indicator showing the completion progress of a task, typically displayed as a progress bar
MDN
W3C
92
select
Represents a control that provides a menu of options
MDN
W3C
93
textarea
Represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form
MDN
W3C
94
p
Represents a paragraph
MDN
W3C
95
pre
Represents preformatted text which is to be presented exactly as written in the HTML file
MDN
W3C
96
ul
Represents an unordered list of items, typically rendered as a bulleted list
MDN
W3C
97
main
Represents the dominant content of the <body> of a document. The main content area consists of content that is directly related to or expands upon the central topic of a document, or the central functionality of an application
MDN
W3C
98
summary
Specifies a summary, caption, or legend for a <details> element's disclosure box
MDN
W3C
99
menu
Represents a group of commands that a user can perform or activate. This includes both list menus, which might appear across the top of a screen, as well as context menus, such as those that might appear underneath a button after it has been clicked
MDN
W3C
100
tr
Defines a row of cells in a table. The row's cells can then be established using a mix of <td> (data cell) and <th> (header cell) elements.The HTML <tr> element specifies that the markup contained inside the <tr> block comprises one row of a table, inside which the <th> and <td> elements create header and data cells, respectively, within the row
MDN
W3C
101
slot
A part of the Web Components technology suite—is a placeholder inside a web component that you can fill with your own markup, which lets you create separate DOM trees and present them together
MDN
W3C
102
template
A mechanism for holding client-side content that is not to be rendered when a page is loaded but may subsequently be instantiated during runtime using JavaScript
MDN
W3C
103
area
Defines a hot-spot region on an image, and optionally associates it with a hypertext link. This element is used only within a <map> element
MDN
W3C
104
audio
Embeds sound content in documents. It may contain one or more audio sources, represented using the src attribute or the <source> element: the browser will choose the most suitable one. It can also be the destination for streamed media, using a MediaStream
MDN
W3C
105
img
Embeds an image into the document. It is a replaced element
MDN
W3C
106
map
Defines an image map (a clickable link area) with area elements
MDN
W3C
107
track
As a child of the media elements <audio> and <video>. It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles. The tracks are formatted in WebVTT format (.vtt files) — Web Video Text Tracks or Timed Text Markup Language (TTML)
MDN
W3C
108
video
Embeds a media player which supports video playback into the document
MDN
W3C
109
embed
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
MDN
W3C
110
iframe
Represents a nested browsing context, embedding another HTML page into the current one
MDN
W3C
111
object
Represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin
MDN
W3C
112
param
Defines parameters for an <object> element
MDN
W3C
113
picture
Contains zero or more <source> elements and one <img> element to provide versions of an image for different display/device scenarios
MDN
W3C
114
source
Specifies multiple media resources for the <picture>, the <audio> element, or the <video> element
MDN
W3C
115
acronym
Allows authors to clearly indicate a sequence of characters that compose an acronym or abbreviation for a word. This element has been removed in HTML5. Use <abbr> element
MDN
W3C
116
applet
Embeds a Java applet into the document; this element has been deprecated in favor of <object>
MDN
W3C
117
basefont
Sets a default font face, size, and color for the other elements which are descended from its parent element
MDN
W3C
118
bgsound
The Internet Explorer only HTML Background Sound element (<bgsound>) sets up a sound file to play in the background while the page is used; use <audio> instead
MDN
W3C
119
big
Renders the enclosed text at a font size one level larger than the surrounding text (medium becomes large, for example)
MDN
W3C
120
blink
A non-standard element which causes the enclosed text to flash slowly
MDN
W3C
121
center
A block-level element that displays its block-level or inline contents centered horizontally within its containing element
MDN
WHATWG
122
command
Represents a command which the user can invoke. Commands are often used as part of a context menu or toolbar
MDN
WHATWG
123
content
An obsolete part of the Web Components suite of technologies—was used inside of Shadow DOM as an insertion point, and wasn't meant to be used in ordinary HTML
MDN
124
dir
As a container for a directory of files and/or folders, potentially with styles and icons applied by the user agent
MDN
W3C
125
element
An obsolete part of the Web Components specification; it was intended to be used to define new custom DOM elements
MDN
w3df
126
font
Defines the font size, color and face for its content
MDN
W3C
127
frame
An HTML element which defines a particular area in which another HTML document can be displayed. A frame should be used within a <frameset>
MDN
W3C
128
frameset
Contains <frame> elements
MDN
W3C
129
image
An obsolete remnant of an ancient version of HTML lost in the mists of time; use the standard <img> element instead
MDN
130
isindex
An obsolete HTML element that puts a text field in a page for querying the document
MDN
W3C
131
keygen
Exists to facilitate generation of key material, and submission of the public key as part of an HTML form. This mechanism is designed for use with Web-based certificate management systems. It is expected that the <keygen> element will be used in an HTML form along with other information needed to construct a certificate request, and that the result of the process will be a signed certificate
MDN
W3C
132
listing
Renders text between the start and end tags without interpreting the HTML in between and using a monospaced font. The HTML 2 standard recommended that lines shouldn't be broken when not greater than 132 characters
MDN
W3C
133
marquee
Inserts a scrolling area of text. You can control what happens when the text reaches the edges of its content area using its attributes
MDN
W3C
134
menuitem
Represents a command that a user is able to invoke through a popup menu. This includes context menus, as well as menus that might be attached to a menu button
MDN
W3C
135
multicol
An experimental element designed to allow multi-column layouts and must not be used
MDN
W3C
136
nextid
An obsolete HTML element that served to enable the NeXT web designing tool to generate automatic NAME labels for its anchors
MDN
W3C
137
nobr
The non-standard, obsolete HTML <nobr> element prevents the text it contains from automatically wrapping across multiple lines, potentially resulting in the user having to scroll horizontally to see the entire width of the text
MDN
W3C
138
noembed
An obsolete, non-standard way to provide alternative, or "fallback", content for browsers that do not support the <embed> element or do not support the type of embedded content an author wishes to use
MDN
W3C
139
noframes
The obsolete HTML No Frames or frame fallback element, <noframes>, provides content to be presented in browsers that don't support (or have disabled support for) the <frame> element
MDN
W3C
140
plaintext
Renders everything following the start tag as raw text, ignoring any following HTML
MDN
W3C
141
shadow
An obsolete part of the Web Components technology suite—was intended to be used as a shadow DOM insertion point
MDN
142
spacer
An obsolete HTML element which allowed insertion of empty spaces on pages. It was devised by Netscape to accomplish the same effect as a single-pixel layout image, which was something web designers used to use to add white spaces to web pages without actually using an image. However, <spacer> no longer supported by any major browser and the same effects can now be achieved using simple CSS
MDN
W3C
143
strike
Places a strikethrough (horizontal line) over text
MDN
W3C
144
tt
Creates inline text which is presented using the user agent's default monospace font face
MDN
W3C
145
xmp
Renders text between the start and end tags without interpreting the HTML in between and using a monospaced font. The HTML2 specification recommended that it should be rendered wide enough to allow 80 characters per line
MDN
W3C
root-element
metadata-scripting
inline-text-semantics
forms
text-content
content-sectioning-root
interactive-elements
tabular-data
web-components
image-multimedia-embedded-content
obsolete-and-deprecated