HTML
HTML
HTML is a combination of Hypertext and Markup language. Hypertext defines the link between the web
pages and markup language defines the text document within the tag that defines the structure of web
pages.
Basic Tags
<DOCTYPE! html> – A doctype or document type declaration is an instruction that tells the web
browser about the markup language in which the current page is written. It is not an element or tag. The
doctype declaration is not case-sensitive.
<html> – This tag is used to define the root element of an HTML document. This tag tells
the browser that it is an HTML document. It is the second outer container element that
contains all other elements within it.
What are HTML tags ?
HTML tags are the keywords that are used to produce web pages in various formats. Opening
tags and closing tags are found in the majority of tags. The concluding tags contain a forward
slash (/), while the language of the beginning tags is the same. Certain tags don’t need to be
closed.
According to
the HTML
specification or
standards,
every HTML < !DOCTYPE html > Try
document
requires a
document type
declaration.
It is used as a
container for
embed embedding plug-ins <embed attributes> Try
such as flash
animations.
It is used to represent
the progress of a task.
It is also defined how
progress <progress attributes…> </progress> Try
much work is done
and how much is left
to download a thing.
The q tag is a
standard quotation tag
q <q> Contents… </q> Try
and is used for short
quotations.
The sub-tag is
used to add a
subscript text to the
HTML document.
sub and sup <sub>subscript
The <sup> tag is Try
Tags text</sub><sup>superscript text</sup>
used to add
superscript text to
the HTML
document.