HTML TAG LIST
1. HTML Basic Tags
These are the basic tags used in
HTML5.
|
Tag |
Description |
|
It defines the
document type |
|
|
It is the root of
HTML document |
|
|
It defines the head of
an HTML document that contains non-visible data like metadata and other
information |
|
|
It defines the body
of a webpage and contains everything that you see on the webpage |
|
|
These are a group of
heading tags used to create heading in a webpage |
|
|
It defines the
paragraph in a webpage |
|
|
It is used to write
comments in HTML documents |
|
|
It defines a line
break |
|
|
It creates a
horizontal line in a webpage |
2. Formatting tags
This is a list of formatting tags in HTML5. It gives us the
ability to format the text without using CSS.
|
Tag |
Description |
|
It is used to define
bold text |
|
|
It is used to define
important text, add more semantic meaning to the tag |
|
|
It formats text
in italic form |
|
|
It represents stress
emphasis on the text same as i tag |
|
|
It underlines the
text |
|
|
It defines
superscripted text |
|
|
It defines
subscripted text |
|
|
It defines
preformatted text |
|
|
It defines smaller
text |
|
|
It defines
abbreviation or an acronym |
|
|
It defines a piece
of computer code |
|
|
It is used to
display keyboard input |
|
|
It is used to
display the text that has been remove from the webpage |
|
|
It defines a word
that has been inserted in the document. It underlines the word |
|
|
It is used to
highlight specific text |
|
|
It is used for
quotation of a text from another source |
|
|
It defines the text
that incorrect |
|
|
It defines the
address or contact of users on a webpage |
|
|
It defines the title
of a journal, a book, a poem etc |
|
|
It is used to
specify a word that is going defined within the content |
|
|
It defines a meter
scale with a given range and shows the current value. It is also known as
gauge |
|
|
It represents the
progress of work on the webpage |
|
|
It creates quotation
around the text |
|
|
It is used to define
sample output or a computer program |
|
|
It is used to hide a
block of code when the page loads |
|
|
It is used to define
a specific time on the webpage |
|
|
It is used to define
some variable in a computer program or in a mathematical expression |
3. Image tags
The following listed
tags are used for images.
|
Tag |
Description |
|
It defines image on
webpage |
|
|
It defines a
self-contained container for image, code snippets, diagrams, etc |
|
|
It defines a caption
for the <figure> |
|
|
It defines a
container to provide multiple resources for an image |
|
|
It defines an area
inside the image using coordinates |
|
|
It defines a map on
an image and creates a clickable area |
|
|
It defines an area
to draw something on the webpage using javascript |
|
|
It defines a
container for SVG image |
4. Link or navigation tags
These tags are used to
create any hyperlink, defining connection with other resources or creation
navigation menu.
|
Tag |
Description |
|
It defines a
hyperlink to connect to other webpages |
|
|
It defines connects
other document with HTML document or defines some relationship |
|
|
It used to wrap
navigation links |
5. List tags
|
Tag |
Description |
|
It defines an
ordered list |
|
|
It defines an
unordered list |
|
|
It defines an item
in a list |
|
|
It defines a
description list |
|
|
It defines name or
tern in description list |
|
|
It defines
description of item in the description list |
6. Form and input tags
|
Tag |
Description |
|
It is used to create
a form on webpage |
|
|
It defines input of
different type |
|
|
It defines label for
the <input> element |
|
|
It defines resizable
multi-line plain text input |
|
|
It provides a
control to select from multiple options |
|
|
It defines a group
of otions in <select> element |
|
|
It defines an item
to select within <select> element |
|
|
It defines group of
multiple labels and inputs |
|
|
It defines a caption
for a <fieldset> |
|
|
It provides a
control to select among multiple options as well as to submit your own new
option |
|
|
It defines a button |
7. Table tags
|
Tag |
Description |
|
It defines a table |
|
|
It groups the head
content of the table |
|
|
It groups the body
content of the table |
|
|
It groups the footer
content of the table |
|
|
It defines a row in
the table |
|
|
It defines a header
cells in table |
|
|
It defines a cells
in table |
|
|
It defines a caption
for the table |
|
|
It defines a column
group in the table |
|
|
It gives a property
to the column within the <colgroup> |
8. Media tags
|
Tag |
Description |
|
Used to define audio
content on the webpage |
|
|
Used to define video
content on the webpage |
|
|
It defines text
track (subtitle) for the audio and video |
|
|
It specify multiple
resources fro the media like audio, video and picture |
9. Meta tags
|
Tag |
Description |
|
It defines metadata
about the webpage (not visible to users) |
|
|
It defines a base
URL for all the relative URLs of the webpage |
10. Style and programming tags
|
Tag |
Description |
|
It is used to
provide CSS for the HTML elements of the document |
|
|
It defines
javascript program for the webpage |
11. General tags
|
Tag |
Description |
|
It defines a group
of elements within the HTML document |
|
|
It defines an inline
section within the document |
|
|
It defines header of
the webpage or a section |
|
|
It defines main
content of the webpage |
|
|
It defines footer of
the webpage or a section |
|
|
It defines an
article within the document |
|
|
It defines section
in the webpage |
|
|
It defines a section
that user can view or hide |
|
|
It defines a visible
part of the <details> element |
Comments
Post a Comment