Css Tutorial
Css Tutorial
HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first standard HTML
specification which was published in 1995. HTML 4.01 was a major version of HTML and it
was published in late 1999. Though HTML 4.01 version is widely used but currently we are
having HTML-5 version which is an extension to HTML 4.01, and this version was published
in 2012.
Audience
This tutorial is designed for the aspiring Web Designers and Developers with a need to
understand the HTML in enough detail along with its simple overview, and practical
examples. This tutorial will give you enough ingredients to start with HTML from where
you can take yourself at higher level of expertise.
Prerequisites
Before proceeding with this tutorial you should have a basic working knowledge with
Windows or Linux operating system, additionally you must be familiar with:
Experience with any text editor like notepad, notepad++, or Edit plus etc.
How to create directories and files on your computer.
How to navigate through different directories.
How to type content in a file and save them on a computer.
Understanding about images in different formats like JPEG, PNG format.
All the content and graphics published in this e-book are the property of Tutorials Point (I)
Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute or republish
any contents or a part of contents of this e-book in any manner without written consent
of the publisher.
We strive to update the contents of our website and tutorials as timely and as precisely as
possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt.
Ltd. provides no guarantee regarding the accuracy, timeliness or completeness of our
website or its contents including this tutorial. If you discover any errors on our website or
in this tutorial, please notify us at [email protected]
i
HTML
Table of Contents
About the Tutorial .................................................................................................................................... i
Audience .................................................................................................................................................. i
Prerequisites ............................................................................................................................................ i
1. HTML OVERVIEW.............................................................................................................. 1
Core Attributes...................................................................................................................................... 12
ii
HTML
Grouping Content.................................................................................................................................. 22
Text Direction........................................................................................................................................ 26
iii
HTML
Setting Cookies...................................................................................................................................... 35
8. HTML COMMENTS.......................................................................................................... 38
Multiline Comments.............................................................................................................................. 39
iv
HTML
Tables Backgrounds............................................................................................................................... 50
Nested Tables........................................................................................................................................ 55
v
HTML
vi
HTML
ix
HTML
x
HTML
xi
HTML
xii
HTML
xiii
HTML
xiv
HTML
xv
1. HTML OVERVIEW HTML
HTML stands for Hypertext Markup Language, and it is the most widely used language to
write Web Pages.
Hypertext refers to the way in which Web pages (HTML documents) are linked
together. Thus, the link available on a webpage is called Hypertext.
As its name suggests, HTML is a Markup Language which means you use HTML
to simply "mark-up" a text document with tags that tell a Web browser how to
structure it to display.
Originally, HTML was developed with the intent of defining the structure of documents like
headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information
between researchers.
Now, HTML is being widely used to format web pages with the help of different tags
available in HTML language.
<!DOCTYPE html>
<html>
<head>
<title>This is document title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>Document content goes here.....</p>
</body>
</html>
Either you can use Try it option available at the top right corner of the code box to check
the result of this HTML code, or let's save it in an HTML file test.htm using your favorite
text editor. Finally open it using a web browser like Internet Explorer or Google Chrome,
or Firefox etc. It must show the following output:
1
HTML
HTML Tags
As told earlier, HTML is a markup language and makes use of various tags to format the
content. These tags are enclosed within angle braces <Tag Name>. Except few tags,
most of the tags have their corresponding closing tags. For example, <html> has its
closing tag</html> and <body> tag has its closing tag </body> tag etc.
Tag Description
<!DOCTYPE...> This tag defines the document type and HTML version.
This tag encloses the complete HTML document and mainly comprises
<html> of document header which is represented by <head>...</head> and
document body which is represented by <body>...</body> tags.
This tag represents the document's header which can keep other HTML
<head>
tags like <title>, <link> etc.
The <title> tag is used inside the <head> tag to mention the
<title>
document title.
This tag represents the document's body which keeps other HTML tags
<body>
like <h1>, <div>, <p> etc.
2
HTML
To learn HTML, you will need to study various tags and understand how they behave, while
formatting a textual document. Learning HTML is simple as users have to learn the usage
of different tags in order to format the text or images to make a beautiful webpage.
World Wide Web Consortium (W3C) recommends to use lowercase tags starting from HTML
4.
<body>
Document body related tags
</body>
</html>
We will study all the header and body tags in subsequent chapters, but for now let's see
what is document declaration tag.
<!DOCTYPE html>
There are many other declaration types which can be used in HTML document depending
on what version of HTML is being used. We will see more details on this while discussing
<!DOCTYPE...> tag along with other HTML tags.
3
2. HTML BASIC TAGS HTML
Heading Tags
Any document starts with a heading. You can use different sizes for your headings. HTML
also has six levels of headings, which use the elements <h1>, <h2>, <h3>, <h4>,
<h5>, and <h6>. While displaying any heading, browser adds one line before and one
line after that heading.
Example
<!DOCTYPE html>
<html>
<head>
<title>Heading Example</title>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
4
HTML
Paragraph Tag
The <p> tag offers a way to structure your text into different paragraphs. Each paragraph
of text should go in between an opening <p> and a closing </p> tag as shown below in
the example:
Example
<!DOCTYPE html>
<html>
<head>
<title>Paragraph Example</title>
</head>
<body>
<p>Here is a first paragraph of text.</p>
<p>Here is a second paragraph of text.</p>
<p>Here is a third paragraph of text.</p>
</body>
</html>
The <br /> tag has a space between the characters br and the forward slash. If you omit
this space, older browsers will have trouble rendering the line break, while if you miss the
forward slash character and just use <br> it is not valid in XHTML.
Example
<!DOCTYPE html>
<html>
<head>
<title>Line Break Example</title>
</head>
<body>
5
HTML
<p>Hello<br />
You delivered your assignment on time.<br />
Thanks<br />
Mahnaz</p>
</body>
</html>
Hello
You delivered your assignment on time.
Thanks
Mahnaz
Centering Content
You can use <center> tag to put any content in the center of the page or any table cell.
Example
<!DOCTYPE html>
<html>
<head>
<title>Centring Content Example</title>
</head>
<body>
<p>This text is not in the center.</p>
<center>
<p>This text is in the center.</p>
</center>
</body>
</html>
Horizontal Lines
Horizontal lines are used to visually break-up sections of a document. The <hr> tag
creates a line from the current position in the document to the right margin and breaks
the line accordingly.
6
HTML
For example, you may want to give a line between two paragraphs as in the given example
below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Horizontal Line Example</title>
</head>
<body>
<p>This is paragraph one and should be on top</p>
<hr />
<p>This is paragraph two and should be at bottom</p>
</body>
</html>
Again <hr /> tag is an example of the empty element, where you do not need opening
and closing tags, as there is nothing to go in between them.
The <hr /> element has a space between the characters hr and the forward slash. If you
omit this space, older browsers will have trouble rendering the horizontal line, while if you
miss the forward slash character and just use <hr> it is not valid in XHTML
Preserve Formatting
Sometimes, you want your text to follow the exact format of how it is written in the HTML
document. In these cases, you can use the preformatted tag <pre>.
Any text between the opening <pre> tag and the closing </pre> tag will preserve the
formatting of the source document.
Example
<!DOCTYPE html>
<html>
<head>
<title>Preserve Formatting Example</title>
7
HTML
</head>
<body>
<pre>
function testFunction( strText ){
alert (strText)
}
</pre>
</body>
</html>
alert (strText)
Try using the same code without keeping it inside <pre>...</pre> tags
Nonbreaking Spaces
Suppose you want to use the phrase "12 Angry Men." Here, you would not want a browser
to split the "12, Angry" and "Men" across two lines:
In cases, where you do not want the client browser to break text, you should use a
nonbreaking space entity instead of a normal space. For example, when coding
the "12 Angry Men" in a paragraph, you should use something similar to the following
code:
Example
<!DOCTYPE html>
<html>
<head>
<title>Nonbreaking Spaces Example</title>
</head>
<body>
<p>An example of this technique appears in the movie
"12 Angry Men."</p>
</body>
</html>
8
3. HTML ELEMENTS HTML
An HTML element is defined by a starting tag. If the element contains other content, it
ends with a closing tag, where the element name is preceded by a forward slash as shown
below with few tags:
<br />
HTML documents consists of a tree of these elements and they specify how HTML
documents should be built, and what kind of content should be placed in what part of an
HTML document.
For example, <p> is starting tag of a paragraph and </p> is closing tag of the same
paragraph but <p>This is paragraph</p> is a paragraph element.
Example
<!DOCTYPE html>
<html>
<head>
9
HTML
10
4. HTML ATTRIBUTES HTML
We have seen few HTML tags and their usage like heading tags <h1>, <h2>, paragraph
tag <p> and other tags. We used them so far in their simplest form, but most of the HTML
tags can also have attributes, which are extra bits of information.
An attribute is used to define the characteristics of an HTML element and is placed inside
the element's opening tag. All attributes are made up of two parts: a name and a value:
The name is the property you want to set. For example, the paragraph <p>
element in the example carries an attribute whose name is align, which you can
use to indicate the alignment of paragraph on the page.
The value is what you want the value of the property to be set and always put
within quotations. The below example shows three possible values of align
attribute: left, center and right.
Attribute names and attribute values are case-insensitive. However, the World Wide Web
Consortium (W3C) recommends lowercase attributes/attribute values in their HTML 4
recommendation.
Example
<!DOCTYPE html>
<html>
<head>
<title>Align Attribute Example</title>
</head>
<body>
<p align="left">This is left aligned</p>
<p align="center">This is center aligned</p>
<p align="right">This is right aligned</p>
</body>
</html>
11
HTML
Core Attributes
The four core attributes that can be used on the majority of HTML elements (although not
all) are:
Id
Title
Class
Style
The Id Attribute
The id attribute of an HTML tag can be used to uniquely identify any element within an
HTML page. There are two primary reasons that you might want to use an id attribute on
an element:
If you have two elements of the same name within a Web page (or style sheet),
you can use the id attribute to distinguish between elements that have the same
name.
We will discuss style sheet in separate tutorial. For now, let's use the id attribute to
distinguish between two paragraph elements as shown below.
Example
<p id="html">This para explains what is HTML</p>
<p id="css">This para explains what is Cascading Style Sheet</p>
The behavior of this attribute will depend upon the element that carries it, although it is
often displayed as a tooltip when cursor comes over the element or while the element is
loading.
Example
<!DOCTYPE html>
<html>
<head>
<title>The title Attribute Example</title>
</head>
<body>
<h3 title="Hello HTML!">Titled Heading Tag Example</h3>
12
HTML
</body>
</html>
The value of the attribute may also be a space-separated list of class names. For example:
<!DOCTYPE html>
<html>
<head>
<title>The style Attribute</title>
</head>
<body>
<p style="font-family:arial; color:#FF0000;">Some text...</p>
</body>
</html>
Some text...
At this point of time, we are not learning CSS, so just let's proceed without bothering much
about CSS. Here, you need to understand what are HTML attributes and how they can be
used while formatting content.
Internationalization Attributes
There are three internationalization attributes, which are available for most (although not
all) XHTML elements.
13
HTML
dir
lang
xml:lang
Value Meaning
rtl Right to left (for languages such as Hebrew or Arabic that are read right to left)
Example
<!DOCTYPE html>
<html dir="rtl">
<head>
<title>Display Directions</title>
</head>
<body>
This is how IE 5 renders right-to-left directed text.
</body>
</html>
When dir attribute is used within the <html> tag, it determines how text will be presented
within the entire document. When used within another tag, it controls the text's direction
for just the content of that tag.
The values of the lang attribute are ISO-639 standard two-character language codes.
Check HTML Language Codes: ISO 639 for a complete list of language codes.
14
HTML
Example
<!DOCTYPE html>
<html lang="en">
<head>
<title>English Language Page</title>
</head>
<body>
This page is using English Language
</body>
</html>
Generic Attributes
Here's a table of some other attributes that are readily usable with many of the HTML tags.
15
HTML
We will see related examples as we will proceed to study other HTML tags. For a complete
list of HTML Tags and related attributes please check reference to HTML Tags List.
16
5. HTML FORMATTING HTML
If you use a word processor, you must be familiar with the ability to make text bold,
italicized, or underlined; these are just three of the ten options available to indicate how
text can appear in HTML and XHTML.
Bold Text
Anything that appears within <b>...</b> element, is displayed in bold as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Bold Text Example</title>
</head>
<body>
<p>The following word uses a <b>bold</b> typeface.</p>
</body>
</html>
Italic Text
Anything that appears within <i>...</i> element is displayed in italicized as shown
below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Italic Text Example</title>
</head>
<body>
<p>The following word uses a <i>italicized</i> typeface.</p>
17
HTML
</body>
</html>
Underlined Text
Anything that appears within <u>...</u> element, is displayed with underline as shown
below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Underlined Text Example</title>
</head>
<body>
<p>The following word uses a <u>underlined</u> typeface.</p>
</body>
</html>
Strike Text
Anything that appears within <strike>...</strike> element is displayed with
strikethrough, which is a thin line through the text as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Strike Text Example</title>
</head>
<body>
<p>The following word uses a <strike>strikethrough</strike> typeface.</p>
</body>
18
HTML
</html>
Monospaced Font
The content of a <tt>...</tt> element is written in monospaced font. Most of the fonts
are known as variable-width fonts because different letters are of different widths (for
example, the letter 'm' is wider than the letter 'i'). In a monospaced font, however, each
letter has the same width.
Example
<!DOCTYPE html>
<html>
<head>
<title>Monospaced Font Example</title>
</head>
<body>
<p>The following word uses a <tt>monospaced</tt> typeface.</p>
</body>
</html>
Superscript Text
The content of a <sup>...</sup> element is written in superscript; the font size used is
the same size as the characters surrounding it but is displayed half a character's height
above the other characters.
Example
<!DOCTYPE html>
<html>
<head>
<title>Superscript Text Example</title>
</head>
<body>
<p>The following word uses a <sup>superscript</sup> typeface.</p>
19
HTML
</body>
</html>
Subscript Text
The content of a <sub>...</sub> element is written in subscript; the font size used is
the same as the characters surrounding it, but is displayed half a character's height
beneath the other characters.
Example
<!DOCTYPE html>
<html>
<head>
<title>Subscript Text Example</title>
</head>
<body>
<p>The following word uses a <sub>subscript</sub> typeface.</p>
</body>
</html>
Inserted Text
Anything that appears within <ins>...</ins> element is displayed as inserted text.
Example
<!DOCTYPE html>
<html>
<head>
<title>Inserted Text Example</title>
</head>
<body>
<p>I want to drink <del>cola</del> <ins>wine</ins></p>
</body>
20
HTML
</html>
Deleted Text
Anything that appears within <del>...</del> element, is displayed as deleted text.
Example
<!DOCTYPE html>
<html>
<head>
<title>Deleted Text Example</title>
</head>
<body>
<p>I want to drink <del>cola</del> <ins>wine</ins></p>
</body>
</html>
Larger Text
The content of the <big>...</big> element is displayed one font size larger than the rest
of the text surrounding it as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Larger Text Example</title>
</head>
<body>
<p>The following word uses a <big>big</big> typeface.</p>
</body>
21
HTML
</html>
Smaller Text
The content of the <small>...</small> element is displayed one font size smaller than
the rest of the text surrounding it as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Smaller Text Example</title>
</head>
<body>
<p>The following word uses a <small>small</small> typeface.</p>
</body>
</html>
Grouping Content
The <div> and <span> elements allow you to group together several elements to create
sections or subsections of a page.
For example, you might want to put all of the footnotes on a page within a <div> element
to indicate that all of the elements within that <div> element relate to the footnotes. You
might then attach a style to this <div> element so that they appear using a special set of
style rules.
Example
<!DOCTYPE html>
<html>
<head>
<title>Div Tag Example</title>
</head>
<body>
22
HTML
CONTENT ARTICLES
The <span> element, on the other hand, can be used to group inline elements only. So,
if you have a part of a sentence or paragraph which you want to group together, you could
use the <span> element as follows
Example
<!DOCTYPE html>
<html>
<head>
<title>Span Tag Example</title>
</head>
<body>
<p>This is the example of <span style="color:green">span tag</span> and the
<span style="color:red">div tag</span> alongwith CSS</p>
</body>
</html>
This is the example of span tag and the div tag along with CSS
These tags are commonly used with CSS to allow you to attach a style to a section of a
page.
23
6. HTML PHRASE TAGS HTML
The phrase tags have been desicolgned for specific purposes, though they are displayed
in a similar way as other basic tags like <b>, <i>, <pre>, and <tt>, you have seen in
previous chapter. This chapter will take you through all the important phrase tags, so let's
start seeing them one by one.
Emphasized Text
Anything that appears within <em>...</em> element is displayed as emphasized text.
Example
<!DOCTYPE html>
<html>
<head>
<title>Emphasized Text Example</title>
</head>
<body>
<p>The following word uses a <em>emphasized</em> typeface.</p>
</body>
</html>
Marked Text
Anything that appears with-in <mark>...</mark> element, is displayed as marked with
yellow ink.
Example
<!DOCTYPE html>
<html>
<head>
<title>Marked Text Example</title>
</head>
<body>
<p>The following word has been <mark>marked</mark> with yellow</p>
</body>
24
HTML
</html>
Strong Text
Anything that appears within <strong>...</strong> element is displayed as important
text.
Example
<!DOCTYPE html>
<html>
<head>
<title>Strong Text Example</title>
</head>
<body>
<p>The following word uses a <strong>strong</strong> typeface.</p>
</body>
</html>
Text Abbreviation
You can abbreviate a text by putting it inside opening <abbr> and closing </abbr> tags.
If present, the title attribute must contain this full description and nothing else.
Example
<!DOCTYPE html>
<html>
<head>
<title>Text Abbreviation</title>
</head>
<body>
<p>My best friend's name is <abbr title="Abhishek">Abhy</abbr>.</p>
</body>
</html>
Acronym Element
The <acronym> element allows you to indicate that the text between <acronym> and
</acronym> tags is an acronym.
At present, the major browsers do not change the appearance of the content of the
<acronym> element.
Example
<!DOCTYPE html>
<html>
<head>
<title>Acronym Example</title>
</head>
<body>
<p>This chapter covers marking up text in <acronym>XHTML</acronym>.</p>
</body>
</html>
Text Direction
The <bdo>...</bdo> element stands for Bi-Directional Override and it is used to
override the current text direction.
Example
<!DOCTYPE html>
<html>
<head>
<title>Text Direction Example</title>
</head>
<body>
<p>This text will go left to right.</p>
<p><bdo dir="rtl">This text will go right to left.</bdo></p>
</body>
</html>
26
HTML
Special Terms
The <dfn>...</dfn> element (or HTML Definition Element) allows you to specify that you
are introducing a special term. It's usage is similar to italic words in the midst of a
paragraph.
Typically, you would use the <dfn> element the first time you introduce a key term. Most
recent browsers render the content of a <dfn> element in an italic font.
Example
<!DOCTYPE html>
<html>
<head>
<title>Special Terms Example</title>
</head>
<body>
<p>The following word is a <dfn>special</dfn> term.</p>
</body>
</html>
Quoting Text
When you want to quote a passage from another source, you should put it in
between<blockquote>...</blockquote> tags.
Text inside a <blockquote> element is usually indented from the left and right edges of
the surrounding text, and sometimes uses an italicized font.
Example
<!DOCTYPE html>
<html>
<head>
<title>Blockquote Example</title>
</head>
<body>
27
HTML
<p>The following description of XHTML is taken from the W3C Web site:</p>
The following description of XHTML is taken from the W3C Web site:
XHTML 1.0 is the W3C's first Recommendation for XHTML, following on from
earlier work on HTML 4.01, HTML 4.0, HTML 3.2 and HTML 2.0.
Short Quotations
The <q>...</q> element is used when you want to add a double quote within a sentence.
Example
<!DOCTYPE html>
<html>
<head>
<title>Double Quote Example</title>
</head>
<body>
<p>Amit is in Spain, <q>I think I am wrong</q>.</p>
</body>
</html>
Text Citations
If you are quoting a text, you can indicate the source placing it between an
opening <cite>tag and closing </cite> tag
As you would expect in a print publication, the content of the <cite> element is rendered
in italicized text by default.
Example
<!DOCTYPE html>
<html>
28
HTML
<head>
<title>Citations Example</title>
</head>
<body>
<p>This HTML tutorial is derived from <cite>W3 Standard for HTML</cite>.</p>
</body>
</html>
Computer Code
Any programming code to appear on a Web page should be placed
inside <code>...</code>tags. Usually the content of the <code> element is presented
in a monospaced font, just like the code in most programming books.
Example
<!DOCTYPE html>
<html>
<head>
<title>Computer Code Example</title>
</head>
<body>
<p>Regular text. <code>This is code.</code> Regular text.</p>
</body>
</html>
Keyboard Text
When you are talking about computers, if you want to tell a reader to enter some text,
you can use the <kbd>...</kbd> element to indicate what should be typed in, as in this
example.
Example
<!DOCTYPE html>
<html>
29
HTML
<head>
<title>Keyboard Text Example</title>
</head>
<body>
<p>Regular text. <kbd>This is inside kbd element</kbd> Regular text.</p>
</body>
</html>
Programming Variables
This element is usually used in conjunction with the <pre> and <code> elements to
indicate that the content of that element is a variable.
Example
<!DOCTYPE html>
<html>
<head>
<title>Variable Text Example</title>
</head>
<body>
<p><code>document.write("<var>user-name</var>")</code></p>
</body>
</html>
Program Output
The <samp>...</samp> element indicates sample output from a program, and script
etc. Again, it is mainly used when documenting programming or coding concepts.
Example
<!DOCTYPE html>
<html>
<head>
<title>Program Output Example</title>
30
HTML
</head>
<body>
<p>Result produced by the program is <samp>Hello World!</samp></p>
</body>
</html>
Address Text
The <address>...</address> element is used to contain any address.
Example
<!DOCTYPE html>
<html>
<head>
<title>Address Example</title>
</head>
<body>
<address>388A, Road No 22, Jubilee Hills - Hyderabad</address>
</body>
</html>
31
7. HTML META TAGS HTML
HTML lets you specify metadata - additional important information about a document in a
variety of ways. The META elements can be used to include name/value pairs describing
properties of the HTML document, such as author, expiry date, a list of keywords,
document author etc.
The <meta> tag is used to provide such additional information. This tag is an empty
element and so does not have a closing tag but it carries information within its attributes.
You can include one or more meta tags in your document based on what information you
want to keep in your document but in general, meta tags do not impact physical
appearance of the document so from appearance point of view, it does not matter if you
include them or not.
Attribute Description
Name Name for the property. Can be anything. Examples include, keywords,
description, author, revised, generator etc.
scheme Specifies a scheme to interpret the property's value (as declared in the
content attribute).
http- Used for http response message headers. For example, http-equiv can be
equiv used to refresh the page or to set a cookie. Values include content-type,
expires, refresh and set-cookie.
Specifying Keywords
You can use <meta> tag to specify important keywords related to the document and later
these keywords are used by the search engines while indexing your webpage for searching
purpose.
Example
Following is an example, where we are adding HTML, Meta Tags, Metadata as important
keywords about the document.
32
HTML
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
Hello HTML5!
Document Description
You can use <meta> tag to give a short description about the document. This again can
be used by various search engines while indexing your webpage for searching purpose.
Example
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
<meta name="description" content="Learning about Meta Tags." />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
33
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
<meta name="description" content="Learning about Meta Tags." />
<meta name="revised" content="Tutorialspoint, 3/7/2014" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
Document Refreshing
A <meta> tag can be used to specify a duration after which your web page will keep
refreshing automatically.
Example
If you want your page keep refreshing after every 5 seconds then use the following syntax.
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
<meta name="description" content="Learning about Meta Tags." />
<meta name="revised" content="Tutorialspoint, 3/7/2014" />
<meta http-equiv="refresh" content="5" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
34
HTML
Page Redirection
You can use <meta> tag to redirect your page to any other webpage. You can also specify
a duration if you want to redirect the page after a certain number of seconds.
Example
Following is an example of redirecting current page to another page after 5 seconds. If
you want to redirect page immediately then do not specify content attribute.
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
<meta name="description" content="Learning about Meta Tags." />
<meta name="revised" content="Tutorialspoint, 3/7/2014" />
<meta http-equiv="refresh" content="5; url=http://www.tutorialspoint.com" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
Setting Cookies
Cookies are data, stored in small text files on your computer and it is exchanged between
web browser and web server to keep track of various information based on your web
application need.
You can use <meta> tag to store cookies on client side and later this information can be
used by the Web Server to track a site visitor.
Example
Following is an example of redirecting current page to another page after 5 seconds. If
you want to redirect page immediately then do not specify content attribute.
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
<meta name="description" content="Learning about Meta Tags." />
<meta name="revised" content="Tutorialspoint, 3/7/2014" />
35
HTML
If you do not include the expiration date and time, the cookie is considered a session
cookie and will be deleted when the user exits the browser.
Note: You can check PHP and Cookies tutorial for a complete detail on Cookies.
Example
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
<meta name="description" content="Learning about Meta Tags." />
<meta ame="author" content="Mahnaz Mohtashim" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
Example
By default, Web servers and Web browsers use ISO-8859-1 (Latin1) encoding to process
Web pages. Following is an example to set UTF-8 encoding:
<!DOCTYPE html>
<html>
<head>
36
HTML
To serve the static page with traditional Chinese characters, the webpage must contain a
<meta> tag to set Big5 encoding:
<!DOCTYPE html>
<html>
<head>
<title>Meta Tags Example</title>
<meta name="keywords" content="HTML, Meta Tags, Metadata" />
<meta name="description" content="Learning about Meta Tags." />
<meta ame="author" content="Mahnaz Mohtashim" />
<meta http-equiv="Content-Type" content="text/html; charset=Big5" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
37
8. HTML COMMENTS HTML
Comment is a piece of code which is ignored by any web browser. It is a good practice to
add comments into your HTML code, especially in complex documents, to indicate sections
of a document, and any other notes to anyone looking at the code. Comments help you
and others understand your code and increases code readability.
HTML comments are placed in between <!-- ... --> tags. So, any content placed with-in
<!-- ... --> tags will be treated as comment and will be completely ignored by the browser.
Example
<!DOCTYPE html>
<html>
<head> <!-- Document Header Starts -->
<title>This is document title</title>
</head> <!-- Document Header Ends -->
<body>
<p>Document content goes here.....</p>
</body>
</html>
This will produce the following result without displaying the content given as a part of
comments:
Example
Here, the given comment is a valid comment and will be wiped off by the browser.
<!DOCTYPE html>
<html>
<head>
<title>Valid Comment Example</title>
</head>
<body>
38
HTML
But, following line is not a valid comment and will be displayed by the browser. This is
because there is a space between the left angle bracket and the exclamation mark.
<!DOCTYPE html>
<html>
<head>
<title>Invalid Comment Example</title>
</head>
<body>
< !-- This is not a valid comment -->
<p>Document content goes here.....</p>
</body>
</html>
Multiline Comments
So far we have seen single line comments, but HTML supports multi-line comments as
well.
You can comment multiple lines by the special beginning tag <!-- and ending tag -->
placed before the first line and end of the last line as shown in the given example below.
Example
<!DOCTYPE html><html>
<head>
<title>Multiline Comments</title>
</head>
<body>
<!--
This is a multiline comment and it can
span through as many as lines you like.
-->
39
HTML
Conditional Comments
Conditional comments only work in Internet Explorer (IE) on Windows but they are ignored
by other browsers. They are supported from Explorer 5 onwards, and you can use them
to give conditional instructions to different versions of IE.
Example
<!DOCTYPE html><html>
<head>
<title>Conditional Comments</title>
<!--[if IE 6]>
Special instructions for IE 6 here
<![endif]-->
</head>
<body>
<p>Document content goes here.....</p>
</body>
</html>
You will come across a situation where you will need to apply a different style sheet based
on different versions of Internet Explorer, in such situation conditional comments will be
helpful.
Example
<!DOCTYPE html><html>
<head>
<title>Using Comment Tag</title>
</head>
40
HTML
<body>
<p>This is <comment>not</comment> Internet Explorer.</p>
</body>
</html>
But if you are not using IE, then it will produce following result:
Example
<!DOCTYPE html><html>
<head>
<title>Commenting Script Code</title>
<script>
<!--
document.write("Hello World!")
//-->
</script>
</head>
<body>
<p>Hello , World!</p>
</body>
</html>
Hello World!
Hello , World!
then it is recommended to put that style sheet code inside proper HTML comments so that
old browsers can work properly.
Example
<!DOCTYPE html><html>
<head>
<title>Commenting Style Sheets</title>
<style>
<!--
.example {
border:1px solid #4a7d49;
}
//-->
</style>
</head>
<body>
<div class="example">Hello , World!</div>
</body>
</html>
Hello, World!
42
9. HTML IMAGES HTML
Images are very important to beautify as well as to depict many complex concepts in
simple way on your web page. This tutorial will take you through simple steps to use
images in your web pages.
Insert Image
You can insert any image in your web page by using <img> tag. Following is the simple
syntax to use this tag.
The <img> tag is an empty tag, which means that, it can contain only list of attributes
and it has no closing tag.
Example
To try following example, let's keep our HTML file test.htm and image file test.png in the
same directory:
<!DOCTYPE html>
<html>
<head>
<title>Using Image in Webpage</title>
</head>
<body>
<p>Simple Image Insert</p>
<img src="test.png" alt="Test Image" />
</body>
</html>
You can use PNG, JPEG or GIF image file based on your comfort but make sure you specify
correct image file name in src attribute. Image name is always case sensitive.
43
HTML
The alt attribute is a mandatory attribute which specifies an alternate text for an image,
if the image cannot be displayed.
Example
Assuming our image location is "image/test.png", try the following example:
<!DOCTYPE html>
<html>
<head>
<title>Using Image in Webpage</title>
</head>
<body>
<p>Simple Image Insert</p>
<img src="images/test.png" alt="Test Image" />
</body>
</html>
Example
<!DOCTYPE html>
<html>
<head>
<title>Set Image Width and Height</title>
44
HTML
</head>
<body>
<p>Setting image width and height</p>
<img src="test.png" alt="Test Image" width="150" height="100"/>
</body>
</html>
Example
<!DOCTYPE html>
<html>
<head>
<title>Set Image Border</title>
</head>
<body>
<p>Setting image Border</p>
<img src="test.png" alt="Test Image" border="3"/>
</body>
</html>
45
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>Set Image Alignment</title>
</head>
<body>
<p>Setting image Alignment</p>
<img src="test.png" alt="Test Image" border="3" align="right"/>
</body>
</html>
46
10. HTML TABLES HTML
The HTML tables allow web authors to arrange data like text, images, links, other tables,
etc. into rows and columns of cells.
The HTML tables are created using the <table> tag in which the <tr> tag is used to create
table rows and <td> tag is used to create data cells.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Tables</title>
</head>
<body>
<table border="1">
<tr>
<td>Row 1, Column 1</td>
<td>Row 1, Column 2</td>
</tr>
<tr>
<td>Row 2, Column 1</td>
<td>Row 2, Column 2</td>
</tr>
</table>
</body>
</html>
Here, the border is an attribute of <table> tag and it is used to put a border across all
the cells. If you do not need a border, then you can use border="0".
47
HTML
Table Heading
Table heading can be defined using <th> tag. This tag will be put to replace <td> tag,
which is used to represent actual data cell. Normally you will put your top row as table
heading as shown below, otherwise you can use <th> element in any row.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Header</title>
</head>
<body>
<table border="1">
<tr>
<th>Name</th>
<th>Salary</th>
</tr>
<tr>
<td>Ramesh Raman</td>
<td>5000</td>
</tr>
<tr>
<td>Shabbir Hussein</td>
<td>7000</td>
</tr>
</table>
</body>
</html>
Name Salary
48
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Cellpadding</title>
</head>
<body>
<table border="1" cellpadding="5" cellspacing="5">
<tr>
<th>Name</th>
<th>Salary</th>
</tr>
<tr>
<td>Ramesh Raman</td>
<td>5000</td>
</tr>
<tr>
<td>Shabbir Hussein</td>
<td>7000</td>
</tr>
</table>
</body>
</html>
Name Salary
49
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Colspan/Rowspan</title>
</head>
<body>
<table border="1">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
<tr><td rowspan="2">Row 1 Cell 1</td><td>Row 1 Cell 2</td><td>Row 1 Cell
3</td></tr>
<tr><td>Row 2 Cell 2</td><td>Row 2 Cell 3</td></tr>
<tr><td colspan="3">Row 3 Cell 1</td></tr>
</table>
</body>
</html>
Row 3 Cell 1
Tables Backgrounds
You can set table background using one of the following two ways:
bgcolor attribute - You can set background color for whole table or just for one
cell.
50
HTML
background attribute - You can set background image for whole table or just for
one cell.
You can also set border color also using bordercolor attribute.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Background</title>
</head>
<body>
<table border="1" bordercolor="green" bgcolor="yellow">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
<tr><td rowspan="2">Row 1 Cell 1</td><td>Row 1 Cell 2</td><td>Row 1 Cell
3</td></tr>
<tr><td>Row 2 Cell 2</td><td>Row 2 Cell 3</td></tr>
<tr><td colspan="3">Row 3 Cell 1</td></tr>
</table>
</body>
</html>
Row 3 Cell 1
Here is an example of using background attribute. Here we will use an image available
in /images directory.
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Background</title>
51
HTML
</head>
<body>
<table border="1" bordercolor="green" background="/images/test.png">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
<tr><td rowspan="2">Row 1 Cell 1</td><td>Row 1 Cell 2</td><td>Row 1 Cell
3</td></tr>
<tr><td>Row 2 Cell 2</td><td>Row 2 Cell 3</td></tr>
<tr><td colspan="3">Row 3 Cell 1</td></tr>
</table>
</body>
</html>
This will produce the following result. Here background image did not apply to table's
header.
Row 3 Cell 1
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Width/Height</title>
</head>
<body>
<table border="1" width="400" height="150">
<tr>
52
HTML
Table Caption
The caption tag will serve as a title or explanation for the table and it shows up at the top
of the table. This tag is deprecated in newer version of HTML/XHTML.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Caption</title>
</head>
<body>
<table border="1" width="100%">
<caption>This is the caption</caption>
<tr>
<td>row 1, column 1</td><td>row 1, column 2</td>
</tr>
<tr>
<td>row 2, column 1</td><td>row 2, column 2</td>
</tr>
</table>
</body>
53
HTML
</html>
The three elements for separating the head, body, and foot of a table are:
A table may contain several <tbody> elements to indicate different pages or groups of
data. But it is notable that <thead> and <tfoot> tags should appear before <tbody>
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Table</title>
</head>
<body>
<table border="1" width="100%">
<thead>
<tr>
<td colspan="4">This is the head of the table</td>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4">This is the foot of the table</td>
</tr>
</tfoot>
<tbody>
54
HTML
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</tbody>
</table>
</body>
</html>
Nested Tables
You can use one table inside another table. Not only tables you can use almost all the tags
inside table data tag <td>.
Example
Following is the example of using another table and other tags inside a table cell.
<!DOCTYPE html>
<html>
<head>
<title>HTML Table</title>
</head>
<body>
<table border="1" width="100%">
<tr>
<td>
<table border="1" width="100%">
<tr>
<th>Name</th>
<th>Salary</th>
</tr>
55
HTML
<tr>
<td>Ramesh Raman</td>
<td>5000</td>
</tr>
<tr>
<td>Shabbir Hussein</td>
<td>7000</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Name Salary
56
11. HTML LISTS HTML
HTML offers web authors three ways for specifying lists of information. All lists must
contain one or more list elements. Lists may contain:
<ul> - An unordered list. This will list items using plain bullets.
<ol> - An ordered list. This will use different schemes of numbers to list your
items.
<dl> - A definition list. This arranges your items in the same way as they are
arranged in a dictionary.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Unordered List</title>
</head>
<body>
<ul>
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ul>
</body>
</html>
Beetroot
Ginger
Potato
Radish
57
HTML
<ul type="square">
<ul type="disc">
<ul type="circle">
Example
Following is an example where we used <ul type="square">
<!DOCTYPE html>
<html>
<head>
<title>HTML Unordered List</title>
</head>
<body>
<ul type="square">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ul>
</body>
</html>
Beetroot
Ginger
Potato
Radish
Example
Following is an example where we used <ul type="disc">:
<!DOCTYPE html>
<html>
<head>
<title>HTML Unordered List</title>
</head>
58
HTML
<body>
<ul type="disc">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ul>
</body>
</html>
Beetroot
Ginger
Potato
Radish
Example
Following is an example where we used <ul type="circle">:
<!DOCTYPE html>
<html>
<head>
<title>HTML Unordered List</title>
</head>
<body>
<ul type="circle">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ul>
</body>
</html>
o Beetroot
o Ginger
o Potato
o Radish
59
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered List</title>
</head>
<body>
<ol>
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
1. Beetroot
2. Ginger
3. Potato
4. Radish
60
HTML
Example
Following is an example where we used <ol type="1">
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered List</title>
</head>
<body>
<ol type="1">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
1. Beetroot
2. Ginger
3. Potato
4. Radish
Example
Following is an example where we used <ol type="I">
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered List</title>
</head>
<body>
<ol type="I">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
61
HTML
</html>
I. Beetroot
II. Ginger
III. Potato
IV. Radish
Example
Following is an example where we used <ol type="i">
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered List</title>
</head>
<body>
<ol type="i">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
i. Beetroot
ii. Ginger
iii. Potato
iv. Radish
Example
Following is an example where we used <ol type="A">
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered List</title>
</head>
<body>
62
HTML
<ol type="A">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
A. Beetroot
B. Ginger
C. Potato
D. Radish
Example
Following is an example where we used <ol type="a">
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered List</title>
</head>
<body>
<ol type="a">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
a. Beetroot
b. Ginger
c. Potato
d. Radish
63
HTML
Example
Following is an example where we used <ol type="i" start="4" >
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered List</title>
</head>
<body>
<ol type="i" start="4">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
iv. Beetroot
v. Ginger
vi. Potato
vii. Radish
<dt> - A term
<dd> - Term definition
</dl> - Defines the end of the list
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Definition List</title>
</head>
<body>
<dl>
<dt><b>HTML</b></dt>
<dd>This stands for Hyper Text Markup Language</dd>
<dt><b>HTTP</b></dt>
<dd>This stands for Hyper Text Transfer Protocol</dd>
</dl>
</body>
</html>
HTML
HTTP
65
12. HTML TEXT LINKS HTML
A webpage can contain various links that take you directly to other pages and even specific
parts of a given page. These links are known as hyperlinks.
Hyperlinks allow visitors to navigate between Web sites by clicking on words, phrases, and
images. Thus you can create hyperlinks using text or images available on a webpage.
Linking Documents
A link is specified using HTML tag <a>. This tag is called anchor tag and anything between
the opening <a> tag and the closing </a> tag becomes part of the link and a user can
click that part to reach to the linked document. Following is the simple syntax to use <a>
tag.
Example
Let's try following example which links http://www.tutorialspoint.com at your page:
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
</head>
<body>
<p>Click following link</p>
<a href="http://www.tutorialspoint.com" target="_self">Tutorials Point</a>
</body>
</html>
This will produce the following result, where you can click on the link generated to reach
to the home page of Tutorials Point (in this example).
Tutorials Point
66
HTML
Option Description
_top Opens the linked document in the full body of the window.
Example
Try following example to understand basic difference in few options given for target
attribute.
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
<base href="http://www.tutorialspoint.com/">
</head>
<body>
<p>Click any of the following links</p>
<a href="/html/index.htm" target="_blank">Opens in New</a> |
<a href="/html/index.htm" target="_self">Opens in Self</a> |
<a href="/html/index.htm" target="_parent">Opens in Parent</a> |
<a href="/html/index.htm" target="_top">Opens in Body</a>
</body>
</html>
This will produce the following result, where you can click on different links to understand
the difference between various options given for target attribute.
document header. This tag is used to give a base path for all the links. So your browser
will concatenate given relative path to this base path and will make a complete URL.
Example
Following example makes use of <base> tag to specify base URL and later we can use
relative path to all the links instead of giving complete URL for every link.
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
<base href="http://www.tutorialspoint.com/">
</head>
<body>
<p>Click following link</p>
<a href="/html/index.htm" target="_blank">HTML Tutorial</a>
</body>
</html>
This will produce the following result, where you can click on the link generated HTML
Tutorial to reach to the HTML tutorial.
HTML Tutorial
First create a link to the place where you want to reach with-in a webpage and name it
using <a...> tag as follows:
Second step is to create a hyperlink to link the document and place where you want to
reach:
This will produce following link, where you can click on the link generated Go to the Top to
reach to the top of the HTML Text Link tutorial.
68
HTML
Go to the Top
Example
Save the following in test.htm and open it in any web browser to see how link, alink and
vlink attributes work.
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
<base href="http://www.tutorialspoint.com/">
</head>
<body alink="#54A250" link="#040404" vlink="#F40633">
<p>Click following link</p>
<a href="/html/index.htm" target="_blank" >HTML Tutorial</a>
</body>
</html>
This will produce the following result. Just check color of the link before clicking on it, next
check its color when you activate it and when the link has been visited.
HTML Tutorial
Download Links
You can create text link to make your PDF, or DOC or ZIP files downloadable. This is very
simple; you just need to give complete URL of the downloadable file as follows:
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
</head>
<body>
<a href="http://www.tutorialspoint.com/page.pdf">Download PDF File</a>
</body>
69
HTML
</html>
This will produce following link and will be used to download a file.
For example, if you want make a Filename file downloadable from a given link then its
syntax will be as follows.
#!/usr/bin/perl
# Open the target file and list down its content as follows
open( FILE, "<FileName" );
while(read(FILE, $buffer, 100)){
print("$buffer");
}
Note: For more detail on PERL CGI programs, go through tutorial PERL and CGI.
70
13. HTML IMAGE LINKS HTML
We have seen how to create hypertext link using text and we also learnt how to use images
in our webpages. Now, we will learn how to use images to create hyperlinks.
Example
It's simple to use an image as hyperlink. We just need to use an image inside hyperlink at
the place of text as shown below:
<!DOCTYPE html>
<html>
<head>
<title>Image Hyperlink Example</title>
</head>
<body>
<p>Click following link</p>
<a href="http://www.tutorialspoint.com" target="_self">
<img src="/images/logo.png" alt="Tutorials Point" border="0"/>
</a>
</body>
</html>
This will produce the following result, where you can click on the images to reach to the
home page of Tutorials Point.
This was the simplest way of creating hyperlinks using images. Next we will see how we
can create Mouse-Sensitive Image Links.
Mouse-Sensitive Images
The HTML and XHTML standards provides a feature that lets you embed many different
links inside a single image. You can create different links on the single image based on
different coordinates available on the image. Once different links are attached to different
coordinates, we can click different parts of the image to open target documents. Such
mouse-sensitive images are known as image maps.
71
HTML
Server-side image maps - This is enabled by the ismap attribute of the <img>
tag and requires access to a server and related image-map processing applications.
Client-side image maps - This is created with the usemap attribute of the
<img> tag, along with corresponding <map> and <area> tags.
When ismap is used, the href attribute of the containing <a> tag must contain the URL of
a server application like a cgi or PHP script etc. to process the incoming request based on
the passed coordinates.
The coordinates of the mouse position are screen pixels counted from the upper-left corner
of the image, beginning with (0,0). The coordinates, preceded by a question mark, are
added to the end of the URL.
For example, if a user clicks 20 pixels over and 30 pixels down from the upper-left corner
of the following image:
<!DOCTYPE html>
<html>
<head>
<title>ISMAP Hyperlink Example</title>
</head>
<body>
<p>Click following link</p>
<a href="/cgi-bin/ismap.cgi" target="_self">
<img ismap src="/images/logo.png" alt="Tutorials Point" border="0"/>
</a>
</body>
</html>
72
HTML
Then the browser sends the following search parameters to the web server which can be
processed by ismap.cgi script or map file and you can link whatever documents you like
to these coordinates:
/cgi-bin/ismap.cgi?20,30
This way you can assign different links to different coordinates of the image and when
those coordinates are clicked, you can open corresponding linked document. To learn more
about ismap attribute, you can check How to use Image ismap?
Note: You will learn CGI programming when you will study Perl programming. You can
write your script to process these passed coordinates using PHP or any other script as well.
For now, let's concentrate on learning HTML and later you can revisit this section.
The image that is going to form the map is inserted into the page using the <img /> tag
as a normal image, except it carries an extra attribute called usemap. The value of the
usemap attribute is the value which will be used in a <map> tag to link map and image
tags. The <map> along with <area> tags define all the image coordinates and
corresponding links.
The <area> tag inside the map tag, specifies the shape and the coordinates to define the
boundaries of each clickable hotspot available on the image. Here's an example from the
image map:
<!DOCTYPE html>
<html>
<head>
<title>USEMAP Hyperlink Example</title>
</head>
<body>
<p>Search and click the hotspot</p>
<img src=/https/www.scribd.com/images/html.gif alt="HTML Map" border="0" usemap="#html"/>
<!-- Create Mappings -->
<map name="html">
<area shape="circle"
coords="80,80,20" href="/css/index.htm" alt="CSS Link" target="_self" />
<area shape="rect"
coords="5,5,40,40" alt="jQuery Link" href="/jquery/index.htm" target="_self"
/>
</map>
</body>
73
HTML
</html>
Coordinate System
The actual value of coords is totally dependent on the shape in question. Here is a
summary, to be followed by detailed examples:
rect = x1 , y1 , x2 , y2
x1 and y1 are the coordinates of the upper left corner of the rectangle; x 2 and y2 are the
coordinates of the lower right corner.
circle = xc , yc , radius
xc and yc are the coordinates of the center of the circle, and radius is the circle's radius. A
circle centered at 200,50 with a radius of 25 would have the attribute coords="200,50,25"
poly = x1 , y1 , x2 , y2 , x3 , y3 , ... xn , yn
The various x-y pairs define vertices (points) of the polygon, with a "line" being drawn
from one point to the next point. A diamond-shaped polygon with its top point at 20,20
and 40 pixels across at its widest points would have the attribute
coords="20,20,40,40,20,60,0,40".
All coordinates are relative to the upper-left corner of the image (0,0). Each shape has a
related URL. You can use any image software to know the coordinates of different
positions.
74
14. HTML EMAIL LINKS HTML
It is not difficult to put an HTML email link on your webpage but it can cause unnecessary
spamming problem for your email account. There are people, who can run programs to
harvest these types of emails and later use them for spamming in various ways.
You can have another option to facilitate people to send you emails. One option could be
to use HTML forms to collect user data and then use PHP or CGI script to send an email.
A simple example, check our Contact Us Form. We take user feedback using this form and
then we are using one CGI program which is collecting this information and sending us
email to the one given email ID.
Note: You will learn about HTML Forms in HTML Forms and you will learn about CGI in our
another tutorial Perl CGI Programming.
This code will generate the following link which you can use to send email.
Send Email
Now, if a user clicks this link, it launches one Email Client (like Lotus Notes, Outlook
Express etc. ) installed on your user's computer. There is another risk to use this option
to send email because if user do not have email client installed on their computer then it
would not be possible to send email.
Default Settings
You can specify a default email subject and email body along with your email address.
Following is the example to use default subject and body.
<a href="mailto:[email protected]?subject=Feedback&body=Message">
Send Feedback
</a>
This code will generate the following link which you can use to send email.
Send Feedback
75
15. HTML FRAMES HTML
HTML frames are used to divide your browser window into multiple sections where each
section can load a separate HTML document. A collection of frames in the browser window
is known as a frameset. The window is divided into frames in a similar way the tables are
organized: into rows and columns.
Disadvantages of Frames
There are few drawbacks with using frames, so it's never recommended to use frames in
your webpages:
Some smaller devices cannot cope with frames often because their screen is not
big enough to be divided up.
The browser's back button might not work as the user hopes.
There are still few browsers that do not support frame technology.
Creating Frames
To use frames on a page we use <frameset> tag instead of <body> tag. The <frameset>
tag defines, how to divide the window into frames. The rows attribute of <frameset> tag
defines horizontal frames and cols attribute defines vertical frames. Each frame is
indicated by <frame> tag and it defines which HTML document shall open into the frame.
Example
Following is the example to create three horizontal frames:
<!DOCTYPE html>
<html>
<head>
<title>HTML Frames</title>
</head>
<frameset rows="10%,80%,10%">
<frame name="top" src="/html/top_frame.htm" />
<frame name="main" src="/html/main_frame.htm" />
<frame name="bottom" src="/html/bottom_frame.htm" />
<noframes>
<body>
76
HTML
Example
Let's put the above example as follows, here we replaced rows attribute by cols and
changed their width. This will create all the three frames vertically:
<!DOCTYPE html>
<html>
<head>
<title>HTML Frames</title>
</head>
<frameset cols="25%,50%,25%">
<frame name="left" src="/html/top_frame.htm" />
<frame name="center" src="/html/main_frame.htm" />
<frame name="right" src="/html/bottom_frame.htm" />
<noframes>
<body>
Your browser does not support frames.
</body>
</noframes>
</frameset>
</html>
77
HTML
Attribute Description
Specifies how many columns are contained in the frameset and the size
of each column. You can specify the width of each column in one of the
four ways:
This attribute works just like the cols attribute and takes the same
values, but it is used to specify the rows in the frameset. For example,
rows
to create two horizontal frames, use rows="10%, 90%". You can specify
the height of each row in the same way as explained above for columns.
This attribute specifies the width of the border of each frame in pixels.
border
For example, border="5". A value of zero means no border.
78
HTML
Attribute Description
This attribute is used to give the file name that should be loaded in the
frame. Its value can be any URL. For example,
src
src="/html/top_frame.htm" will load an HTML file available in html
directory.
This attribute specifies whether or not the borders of that frame are
shown; it overrides the value given in the frameborder attribute on the
frameborder
<frameset> tag if one is given, and this can take values either 1 (yes)
or 0 (no).
This attribute allows you to specify the width of the space between the
marginwidth left and right of the frame's borders and the frame's content. The value
is given in pixels. For example marginwidth="10".
This attribute allows you to specify the height of the space between the
marginheight top and bottom of the frame's borders and its contents. The value is
given in pixels. For example marginheight="10".
By default, you can resize any frame by clicking and dragging on the
noresize borders of a frame. The noresize attribute prevents a user from being
able to resize the frame. For example noresize="noresize".
79
HTML
So you must place a <body> element inside the <noframes> element because the
<frameset> element is supposed to replace the <body> element, but if a browser does
not understand <frameset> element then it should understand what is inside the <body>
element which is contained in a <noframes> element.
You can put some nice message for your user having old browsers. For example, Sorry!!
your browser does not support frames. as shown in the above example.
Let's see following example where a test.htm file has following code:
<!DOCTYPE html>
<html>
<head>
<title>HTML Target Frames</title>
</head>
<frameset cols="200, *">
<frame src="/html/menu.htm" name="menu_page" />
<frame src="/html/main.htm" name="main_page" />
<noframes>
<body>
Your browser does not support frames.
</body>
</noframes>
</frameset>
</html>
Here, we have created two columns to fill with two frames. The first frame is 200 pixels
wide and will contain the navigation menu bar implemented by menu.htm file. The second
column fills in remaining space and will contain the main part of the page and it is
implemented by main.htm file. For all the three links available in menu bar, we have
80
HTML
mentioned target frame as main_page, so whenever you click any of the links in menu
bar, available link will open in main page.
<!DOCTYPE html>
<html>
<body bgcolor="#4a7d49">
<a href="http://www.google.com" target="main_page">Google</a>
<br /><br />
<a href="http://www.microsoft.com" target="main_page">Microsoft</a>
<br /><br />
<a href="http://news.bbc.co.uk" target="main_page">BBC News</a>
</body>
</html>
<!DOCTYPE html>
<html>
<body bgcolor="#b5dcb3">
<h3>This is main page and content from any link will be displayed here.</h3>
<p>So now click any link and see the result.</p>
</body>
</html>
Now you can try to click links available in the left panel and see the result.
The targetattribute can also take one of the following values:
Option Description
81
HTML
_parent Loads the page into the parent window, which in the case of a single
frameset is the main browser window.
_top Loads the page into the browser window, replacing any current frames.
82
16. HTML IFRAMES HTML
You can define an inline frame with HTML tag <iframe>. The <iframe> tag is not
somehow related to <frameset> tag, instead, it can appear anywhere in your document.
The <iframe> tag defines a rectangular region within the document in which the browser
can display a separate document, including scrollbars and borders.
The src attribute is used to specify the URL of the document that occupies the inline frame.
Example
Following is the example to show how to use the <iframe>:
<!DOCTYPE html>
<html>
<head>
<title>HTML Iframes</title>
</head>
<body>
<p>Document content goes here...</p>
<iframe src="/html/menu.htm" width="555" height="200">
Sorry your browser does not support inline frames.
</iframe>
<p>Document content also go here...</p>
</body>
</html>
83
HTML
Attribute Description
src This attribute is used to give the file name that should be loaded in the
frame. Its value can be any URL. For example,
src="/html/top_frame.htm" will load an HTML file available in html
directory.
name This attribute allows you to give a name to a frame. It is used to indicate
which frame a document should be loaded into. This is especially
important when you want to create links in one frame that load pages
into an another frame, in which case the second frame needs a name to
identify itself as the target of the link.
frameborder This attribute specifies whether or not the borders of that frame are
shown; it overrides the value given in the frameborder attribute on the
<frameset> tag if one is given, and this can take values either 1 (yes)
or 0 (no).
marginwidth This attribute allows you to specify the width of the space between the
left and right of the frame's borders and the frame's content. The value
is given in pixels. For example marginwidth="10".
marginheight This attribute allows you to specify the height of the space between the
top and bottom of the frame's borders and its contents. The value is
given in pixels. For example marginheight="10".
noresize By default, you can resize any frame by clicking and dragging on the
borders of a frame. The noresize attribute prevents a user from being
able to resize the frame. For example noresize="noresize".
scrolling This attribute controls the appearance of the scrollbars that appear on
the frame. This takes values either "yes", "no" or "auto". For example
scrolling="no" means it should not have scroll bars.
longdesc This attribute allows you to provide a link to another page containing a
long description of the contents of the frame. For example
longdesc="framedescription.htm"
84
17. HTML BLOCKS HTML
All the HTML elements can be categorized into two categories (a) Block Level
Elements (b)Inline Elements.
Block Elements
Block elements appear on the screen as if they have a line break before and after them.
For example, the <p>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <ul>, <ol>, <dl>,
<pre>, <hr />, <blockquote>, and <address> elements are all block level elements. They
all start on their own new line, and anything that follows them appears on its own new
line.
Inline Elements
Inline elements, on the other hand, can appear within sentences and do not have to appear
on a new line of their own. The <b>, <i>, <u>, <em>, <strong>, <sup>, <sub>, <big>,
<small>, <li>, <ins>, <del>, <code>, <cite>, <dfn>, <kbd>, and <var> elements are
all inline elements.
Example
Following is a simple example of <div> tag. We will learn Cascading Style Sheet (CSS) in
a separate chapter but we used it here to show the usage of <div> tag:
<!DOCTYPE html>
<html>
<head>
<title>HTML div Tag</title>
</head>
<body>
85
HTML
</body>
</html>
Beetroot
Ginger
Potato
Radish
Apple
Banana
Mango
Strawberry
The difference between the <span> tag and the <div> tag is that the <span> tag is used
with inline elements whereas the <div> tag is used with block-level elements.
Example
Following is a simple example of <span> tag. We will learn Cascading Style Sheet (CSS)
in a separate chapter but we used it here to show the usage of <span> tag:
<!DOCTYPE html>
<html>
<head>
<title>HTML span Tag</title>
</head>
<body>
</body>
</html>
87
18. HTML BACKGROUNDS HTML
By default, your webpage background is white in color. You may not like it, but no worries.
HTML provides you following two good ways to decorate your webpage background.
Now let's see both the approaches one by one using appropriate examples.
<tagname bgcolor="color_value"...>
Example
Here are the examples to set background of an HTML tag:
<!DOCTYPE html>
<html>
<head>
<title>HTML Background Colors</title>
</head>
<body>
88
HTML
<tr><td>
This background is yellow
</td></tr>
</table>
</body>
</html>
Note: The background attribute is deprecated and it is recommended to use Style Sheet for
background setting.
The most frequently used image formats are JPEG, GIF and PNG images.
89
HTML
Example
Here are the examples to set background images of a table.
<!DOCTYPE html>
<html>
<head>
<title>HTML Background Images</title>
</head>
<body>
</body>
</html>
It is suggested that while creating patterns or transparent GIF or PNG images, use the
smallest dimensions possible even as small as 1x1 to avoid slow loading.
90
HTML
Example
Here are the examples to set background pattern of a table:
<!DOCTYPE html>
<html>
<head>
<title>HTML Background Images</title>
</head>
<body>
</body>
</html>
91
19. HTML COLORS HTML
Colors are very important to give a good look and feel to your website. You can specify
colors on page level using <body> tag or you can set colors for individual tags
using bgcolor attribute.
The <body> tag has following attributes which can be used to set different colors:
vlink - sets a color for visited links - that is, for linked text that you have
already clicked on.
Color names - You can specify color names directly like green, blue or red.
Hex codes - A six-digit code representing the amount of red, green, and blue
that makes up the color.
Color decimal or percentage values - This value is specified using the rgb()
property.
92
HTML
Example
Here are the examples to set background of an HTML tag by color name:
<!DOCTYPE html>
<html>
<head>
<title>HTML Colors by Name</title>
</head>
<body text="blue" bgcolor="green">
<p>Use different color names for for body and table and see the result.</p>
<table bgcolor="black">
<tr>
<td>
<font color="white">This text will appear white on black background.</font>
</td>
</tr>
</table>
</body>
</html>
A hexadecimal value can be taken from any graphics software like Adobe Photoshop,
Paintshop Pro or MS Paint.
93
HTML
Each hexadecimal code will be preceded by a pound or hash sign #. Following is a list of
few colors using hexadecimal notation.
#000000
#FF0000
#00FF00
#0000FF
#FFFF00
#00FFFF
#FF00FF
#C0C0C0
#FFFFFF
Example
Here are the examples to set background of an HTML tag by color code in hexadecimal:
<!DOCTYPE html>
<html>
<head>
<title>HTML Colors by Hex</title>
</head>
<body text="#0000FF" bgcolor="#00FF00">
<p>Use different color hexa for for body and table and see the result.</p>
<table bgcolor="#000000">
<tr>
<td>
<font color="#FFFFFF">This text will appear white on black background.</font>
</td>
</tr>
</table>
</body>
</html>
94
HTML
Note: All the browsers does not support rgb() property of color so it is recommended not to use it.
Following is a list to show few colors using RGB values.
rgb(0,0,0)
rgb(255,0,0)
rgb(0,255,0)
rgb(0,0,255)
rgb(255,255,0)
rgb(0,255,255)
rgb(255,0,255)
rgb(192,192,192)
rgb(255,255,255)
Example
Here are the examples to set background of an HTML tag by color code using rgb() values:
<!DOCTYPE html>
<html>
<head>
<title>HTML Colors by RGB code</title>
</head>
<body text="rgb(0,0,255)" bgcolor="rgb(0,255,0)">
<p>Use different color code for for body and table and see the result.</p>
95
HTML
<table bgcolor="rgb(0,0,0)">
<tr>
<td>
<font color="rgb(255,255,255)">This text will appear white on black
background.</font>
</td>
</tr>
</table>
</body>
</html>
96
HTML
97
HTML
98
20. HTML FONTS HTML
Fonts play a very important role in making a website more user friendly and increasing
content readability. Font face and color depends entirely on the computer and browser
that is being used to view your page but you can use HTML <font> tag to add style, size,
and color to the text on your website. You can use a <basefont> tag to set all of your
text to the same size, face, and color.
The font tag is having three attributes called size, color, and face to customize your fonts.
To change any of the font attributes at any time within your webpage, simply use the
<font> tag. The text that follows will remain changed until you close with the </font> tag.
You can change one or all of the font attributes within one <font> tag.
Note: The font and basefont tags are deprecated and it is supposed to be removed in a
future version of HTML. So they should not be used rather, it's suggested to use CSS styles
to manipulate your fonts. But still for learning purpose, this chapter will explain font and
basefont tags in detail.
Example
<!DOCTYPE html>
<html>
<head>
<title>Setting Font Size</title>
</head>
<body>
<font size="1">Font size="1"</font><br />
<font size="2">Font size="2"</font><br />
<font size="3">Font size="3"</font><br />
<font size="4">Font size="4"</font><br />
<font size="5">Font size="5"</font><br />
<font size="6">Font size="6"</font><br />
<font size="7">Font size="7"</font>
</body>
</html>
99
HTML
Font size="1"
Font size="2"
Font size="3"
Font size="4"
Font size="5"
Font size="6"
Font size="7"
Relative Font Size
You can specify how many sizes larger or how many sizes smaller than the preset font size
should be. You can specify it like <font size="+n"> or <font size="-n">
Example
<!DOCTYPE html>
<html>
<head>
<title>Relative Font Size</title>
</head>
<body>
<font size="-1">Font size="-1"</font><br />
<font size="+1">Font size="+1"</font><br />
<font size="+2">Font size="+2"</font><br />
<font size="+3">Font size="+3"</font><br />
<font size="+4">Font size="+4"</font>
</body>
</html>
Font size="-1"
Font size="+1"
Font size="+2"
Font size="+3"
Font size="+4"
100
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>Font Face</title>
</head>
<body>
<font face="Times New Roman" size="5">Times New Roman</font><br />
<font face="Verdana" size="5">Verdana</font><br />
<font face="Comic sans MS" size="5">Comic Sans MS</font><br />
<font face="WildWest" size="5">WildWest</font><br />
<font face="Bedrock" size="5">Bedrock</font><br />
</body>
</html>
<font face="arial,helvetica">
<font face="Lucida Calligraphy,Comic Sans MS,Lucida Console">
When your page is loaded, their browser will display the first font face available. If none
of the given fonts are installed, then it will display the default font face Times New Roman.
Note: You can check a complete list of HTML Color Name with Codes.
Example
<!DOCTYPE html>
<html>
<head>
<title>Setting Font Color</title>
</head>
<body>
<font color="#FF00FF">This text is in pink</font><br />
<font color="red">This text is red</font>
</body>
</html>
The <basefont> tag also takes color, size and face attributes and it will support relative
font setting by giving size a value of +1 for a size larger or -2 for two sizes smaller.
Example
<!DOCTYPE html>
<html>
<head>
<title>Setting Basefont Color</title>
</head>
<body>
<basefont face="arial, verdana, sans-serif" size="2" color="#ff0000">
<p>This is the page's default font.</p>
102
HTML
</body>
</html>
103
21. HTML FORMS HTML
HTML Forms are required, when you want to collect some data from the site visitor. For example,
during user registration you would like to collect information such as name, email address, credit
card, etc.
A form will take input from the site visitor and then will post it to a back-end application such as
CGI, ASP Script or PHP script etc. The back-end application will perform required processing on
the passed data based on defined business logic inside the application.
There are various form elements available like text fields, textarea fields, drop-down menus, radio
buttons, checkboxes, etc.
The HTML <form> tag is used to create an HTML form and it has following syntax:
Form Attributes
Apart from common attributes, following is a list of the most frequently used form
attributes:
Attribute Description
method Method to be used to upload data. The most frequently used are GET and
POST methods.
target Specify the target window or frame where the result of the script will be
displayed. It takes values like _blank, _self, _parent etc.
enctype You can use the enctype attribute to specify how the browser encodes the
data before it sends it to the server. Possible values are:
Note: You can refer to Perl & CGI for a detail on how form data upload works.
104
HTML
Single-line text input controls - This control is used for items that require only
one line of user input, such as search boxes or names. They are created using
HTML <input> tag.
Password input controls - This is also a single-line text input but it masks the
character as soon as a user enters it. They are also created using HTMl <input>
tag.
Multi-line text input controls - This is used when the user is required to give
details that may be longer than a single sentence. Multi-line input controls are
created using HTML <textarea> tag.
Example
Here is a basic example of a single-line text input used to take first name and last name:
<!DOCTYPE html>
<html>
<head>
<title>Text Input Control</title>
</head>
<body>
<form >
First name: <input type="text" name="first_name" />
<br>
105
HTML
First name:
Last name:
Attributes
Following is the list of attributes for <input> tag for creating text field.
Attribute Description
type Indicates the type of input control and for text input control it will be set
totext.
name Used to give a name to the control which is sent to the server to be
recognized and get the value.
value This can be used to provide an initial value inside the control.
size Allows to specify the width of the text-input control in terms of characters.
maxlength Allows to specify the maximum number of characters a user can enter into
the text box.
Example
Here is a basic example of a single-line password input used to take user password:
<!DOCTYPE html>
<html>
<head>
<title>Password Input Control</title>
</head>
106
HTML
<body>
<form >
User ID : <input type="text" name="user_id" />
<br>
Password: <input type="password" name="password" />
</form>
</body>
</html>
User ID :
Password:
Attributes
Following is the list of attributes for <input> tag for creating password field.
Attribute Description
type Indicates the type of input control and for password input control it will be
set to password.
name Used to give a name to the control which is sent to the server to be
recognized and get the value.
value This can be used to provide an initial value inside the control.
size Allows to specify the width of the text-input control in terms of characters.
maxlength Allows to specify the maximum number of characters a user can enter into
the text box.
107
HTML
Example
Here is a basic example of a multi-line text input used to take item description:
<!DOCTYPE html>
<html>
<head>
<title>Multiple-Line Input Control</title>
</head>
<body>
<form>
Description: <br />
<textarea rows="5" cols="50" name="description">
Enter description here...
</textarea>
</form>
</body>
</html>
Description :
Attributes
Following is the list of attributes for <textarea> tag.
Attribute Description
name Used to give a name to the control which is sent to the server to be
recognized and get the value.
108
HTML
Checkbox Control
Checkboxes are used when more than one option is required to be selected. They are also
created using HTML <input> tag but type attribute is set to checkbox.
Example
Here is an example HTML code for a form with two checkboxes:
<!DOCTYPE html>
<html>
<head>
<title>Checkbox Control</title>
</head>
<body>
<form>
<input type="checkbox" name="maths" value="on"> Maths
<input type="checkbox" name="physics" value="on"> Physics
</form>
</body>
</html>
Maths Physics
Attributes
Following is the list of attributes for <checkbox> tag.
Attribute Description
type Indicates the type of input control and for checkbox input control it will be
set to checkbox.
name Used to give a name to the control which is sent to the server to be
recognized and get the value.
109
HTML
Example
Here is example HTML code for a form with two radio buttons:
<!DOCTYPE html>
<html>
<head>
<title>Radio Box Control</title>
</head>
<body>
<form>
<input type="radio" name="subject" value="maths"> Maths
<input type="radio" name="subject" value="physics"> Physics
</form>
</body>
</html>
Maths Physics
Attributes
Following is the list of attributes for radio button.
Attribute Description
type Indicates the type of input control and for checkbox input control it will be
set to radio.
name Used to give a name to the control which is sent to the server to be
recognized and get the value.
value The value that will be used if the radio box is selected.
110
HTML
Example
Here is example HTML code for a form with one drop down box
<!DOCTYPE html>
<html>
<head>
<title>Select Box Control</title>
</head>
<body>
<form>
<select name="dropdown">
<option value="Maths" selected>Maths</option>
<option value="Physics">Physics</option>
</select>
</form>
</body>
</html>
Maths
Attributes
Following is the list of important attributes of <select> tag:
Attribute Description
name Used to give a name to the control which is sent to the server to be
recognized and get the value.
multiple If set to "multiple" then allows a user to select multiple items from the
menu.
111
HTML
Attribute Description
value The value that will be used if an option in the select box box is selected.
selected Specifies that this option should be the initially selected value when the
page loads.
Example
Here is example HTML code for a form with one file upload box:
<!DOCTYPE html>
<html>
<head>
<title>File Upload Box</title>
</head>
<body>
<form>
<input type="file" name="fileupload" accept="image/*" />
</form>
</body>
</html>
Attributes
Following is the list of important attributes of file upload box:
Attribute Description
name Used to give a name to the control which is sent to the server to be
recognized and get the value.
112
HTML
Button Controls
There are various ways in HTML to create clickable buttons. You can also create a clickable
button using <input> tag by setting its type attribute to button. The type attribute can
take the following values:
Type Description
reset This creates a button that automatically resets form controls to their initial
values.
button This creates a button that is used to trigger a client-side script when the user
clicks that button.
image This creates a clickable button but we can use an image as background of the
button.
Example
Here is example HTML code for a form with three types of buttons:
<!DOCTYPE html>
<html>
<head>
<title>File Upload Box</title>
</head>
<body>
<form>
<input type="submit" name="submit" value="Submit" />
<input type="reset" name="reset" value="Reset" />
<input type="button" name="ok" value="OK" />
<input type="image" name="imagebutton" src="/html/images/logo.png" />
</form>
</body>
</html>
113
HTML
Submit Reset
Example
Here is example HTML code to show the usage of hidden control:
<!DOCTYPE html>
<html>
<head>
<title>File Upload Box</title>
</head>
<body>
<form>
<p>This is page 10</p>
<input type="hidden" name="pagename" value="10" />
<input type="submit" name="submit" value="Submit" />
<input type="reset" name="reset" value="Reset" />
</form>
</body>
</html>
Top of Form
This is page 10
Submit Reset
114
22. HTML EMBED MULTIMEDIA HTML
Sometimes you need to add music or video into your web page. The easiest way to add
video or sound to your web site is to include the special HTML tag called <embed>. This
tag causes the browser itself to include controls for the multimedia automatically provided
browser supports <embed> tag and given media type.
You can also include a <noembed> tag for the browsers which don't recognize the
<embed> tag. You could, for example, use <embed> to display a movie of your choice,
and <noembed> to display a single JPG image if browser does not support <embed>
tag.
Example
Here is a simple example to play an embedded midi file:
<!DOCTYPE html>
<html>
<head>
<title>HTML embed Tag</title>
</head>
<body>
<embed src="/html/yourfile.mid" width="100%" height="60" >
<noembed><img src="yourimage.gif" alt="Alternative Media" ></noembed>
</embed>
</body>
</html>
You can put any media file in src attribute. You can try it yourself by giving various types
of files.
115
HTML
Attribute Description
align Determines how to align the object. It can be set to either center, left or
right.
autostart This boolean attribute indicates if the media should start automatically. You
can set it either true or false.
loop Specifies if the sound should be played continuously (set loop to true), a
certain number of times (a positive value) or not at all (false)
playcount Specifies the number of times to play the sound. This is alternate option
forloop if you are usiong IE.
hidden Specifies if the multimedia object should be shown on the page. A false
value means no and true values means yes.
volume Controls volume of the sound. Can be from 0 (off) to 100 (full volume).
.swf files - are the file types created by Macromedia's Flash program.
.wmv files - are Microsoft's Window's Media Video file types.
.mov files - are Apple's Quick Time Movie format.
.mpeg files - are movie files created by the Moving Pictures Expert Group.
<!DOCTYPE html>
<html>
<head>
116
HTML
Background Audio
You can use HTML <bgsound> tag to play a soundtrack in the background of your
webpage. This tag is supported by Internet Explorer only and most of the other browsers
ignore this tag. It downloads and plays an audio file when the host document is first
downloaded by the user and displayed. The background sound file also will replay
whenever the user refreshes the browser.
This tag is having only two attributes loop and src. Both these attributes have same
meaning as explained above.
<!DOCTYPE html>
<html>
<head>
<title>HTML embed Tag</title>
</head>
<body>
<bgsound src="/html/yourfile.mid">
<noembed><img src="yourimage.gif" ></noembed>
</bgsound>
</body>
</html>
117
HTML
This will produce the blank screen. This tag does not display any component and remains
hidden.
Internet Explorer can also handle only three different sound format files: wav, the native
format for PCs; au, the native format for most Unix workstations; and MIDI, a universal
music-encoding scheme.
Example - 1
You can embed an HTML document in an HTML document itself as follows:
Here alt attribute will come into picture if browser does not support object tag.
Example - 2
You can embed a PDF document in an HTML document as follows:
Example - 3
You can specify some parameters related to the document with the <param> tag. Here
is an example to embed a wav file:
Example - 4
118
HTML
Example - 5
You can add a java applet into HTML document as follows:
<object classid="clsid:8ad9c840-044e-11d1-b3e9-00805f499d93"
width="200" height="200">
<param name="code" value="applet.class">
</object>
The classid attribute identifies which version of Java Plug-in to use. You can use the
optional codebase attribute to specify if and how to download the JRE.
119
23. HTML MARQUEES HTML
Note: The HTML <marquee> tag may not be supported by various browsers so it is not
recommended to rely on this tag, instead you can use JavaScript and CSS to create such
effects.
Syntax
A simple syntax to use HTML <marquee> tag is as follows:
</marquee>
Attribute Description
width This specifies the width of the marquee. This can be a value like 10 or
20% etc.
height This specifies the height of the marquee. This can be a value like 10 or
20% etc.
direction This specifies the direction in which marquee should scroll. This can be a
value like up, down, left or right.
behavior This specifies the type of scrolling of the marquee. This can have a value
like scroll, slide and alternate.
scrolldelay This specifies how long to delay between each jump. This will have a
value like 10 etc.
120
HTML
scrollamount This specifies the speed of marquee text. This can have a value like 10
etc.
loop This specifies how many times to loop. The default value is INFINITE,
which means that the marquee loops endlessly.
bgcolor This specifies background color in terms of color name or color hex value.
hspace This specifies horizontal space around the marquee. This can be a value
like 10 or 20% etc.
vspace This specifies vertical space around the marquee. This can be a value like
10 or 20% etc.
Examples - 1
<!DOCTYPE html>
<html>
<head>
<title>HTML marquee Tag</title>
</head>
<body>
<marquee>This is basic example of marquee</marquee>
</body>
</html>
Examples - 2
<!DOCTYPE html>
<html>
<head>
<title>HTML marquee Tag</title>
</head>
<body>
<marquee width="50%">This example will take only 50% width</marquee>
121
HTML
</body>
</html>
Examples - 3
<!DOCTYPE html>
<html>
<head>
<title>HTML marquee Tag</title>
</head>
<body>
<marquee direction="right">This text will scroll from left to right</marquee>
</body>
</html>
Examples - 4
<!DOCTYPE html>
<html>
<head>
<title>HTML marquee Tag</title>
</head>
<body>
<marquee direction="up">This text will scroll from bottom to up</marquee>
</body>
</html>
122
24. HTML HEADER HTML
We have learnt that a typical HTML document will have following structure:
<body>
Document body related tags
</body>
</html>
This chapter will give a little more detail about header part which is represented by HTML
<head> tag. The <head> tag is a container of various important tags like <title>,
<meta>, <link>, <base>, <style>, <script>, and <noscript> tags.
<!DOCTYPE html>
<html>
<head>
<title>HTML Title Tag Example</title>
</head>
<body>
<p>Hello, World!</p>
</body>
</html>
Hello, World!
123
HTML
Following are few of the important usages of <meta> tag inside an HTML document:
<!DOCTYPE html>
<html>
<head>
<title>HTML Meta Tag Example</title>
<!-- Tag to tell robots not to index the content of a page -->
<meta name="robots" content="noindex, nofollow">
</head>
<body>
<p>Hello, World!</p>
</body>
</html>
124
HTML
Hello, World!
For example, all the given pages and images will be searched after prefixing the given
URLs with base URL http://www.tutorialspoint.com/ directory:
<!DOCTYPE html>
<html>
<head>
<title>HTML Base Tag Example</title>
<base href="http://www.tutorialspoint.com/" />
</head>
<body>
</body>
</html>
But if you change base URL to something else, for example, if base URL is
http://www.tutorialspoint.com/home then image and other given links will become like
http://www.tutorialspoint.com/home/images/logo.png and
http://www.tutorialspoint.com/home/html/index.htm
125
HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML link Tag Example</title>
<base href="http://www.tutorialspoint.com/" />
<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
<body>
<p>Hello, World!</p>
</body>
</html>
Hello, World!
<!DOCTYPE html>
<html>
<head>
<title>HTML style Tag Example</title>
<base href="http://www.tutorialspoint.com/" />
<style type="text/css">
.myclass{
background-color: #aaa;
padding: 10px;
}
</style>
</head>
<body>
<p class="myclass">Hello, World!</p>
</body>
</html>
126
HTML
Hello, World!
Note: To learn about how Cascading Style Sheet works, kindly check a separate tutorial
available at http://www.tutorialspoint.com/css
<!DOCTYPE html>
<html>
<head>
<title>HTML script Tag Example</title>
<base href="http://www.tutorialspoint.com/" />
<script type="text/JavaScript">
function Hello(){
alert("Hello, World");
}
</script>
</head>
<body>
<input type="button" onclick="Hello();" name="ok" value="OK" />
</body>
</html>
This will produce the following result, where you can try to click on the given button:
Note: To learn about how JavaScript works, kindly check a separate tutorial
available at: http://www.tutorialspoint.com/javascript
127
25. HTML STYLE SHEET HTML
Cascading Style Sheets (CSS) describe how documents are presented on screens, in print,
or perhaps how they are pronounced. W3C has actively promoted the use of style sheets
on the Web since the consortium was founded in 1994.
Cascading Style Sheets (CSS) provide easy and effective alternatives to specify various
attributes for the HTML tags. Using CSS, you can specify a number of style properties for
a given HTML element. Each property has a name and a value, separated by a colon (:).
Each property declaration is separated by a semi-colon (;).
Example
First let's consider an example of HTML document which makes use of <font> tag and
associated attributes to specify text color and font size:
<!DOCTYPE html>
<html>
<head>
<title>HTML CSS</title>
</head>
<body>
<p><font color="green" size="5">Hello, World!</font></p>
</body>
</html>
We can re-write above example with the help of Style Sheet as follows:
<!DOCTYPE html>
<html>
<head>
<title>HTML CSS</title>
</head>
<body>
<p style="color:green;font-size:24px;">Hello, World!</p>
</body>
</html>
Hello, World!
128
HTML
External Style Sheet: Define style sheet rules in a separate .css file and then
include that file in your HTML document using HTML <link> tag.
Internal Style Sheet: Define style sheet rules in header section of the HTML
document using <style> tag.
Inline Style Sheet: Define style sheet rules directly along-with the HTML elements
using style attribute.
Let's see all the three cases one by one with the help of suitable examples.
Example
Consider we define a style sheet file style.css which has following rules:
.red{
color: red;
}
.thick{
font-size:20px;
}
.green{
color:green;
}
Here we defined three CSS rules which will be applicable to three different classes defined
for the HTML tags. I suggest you should not bother about how these rules are being defined
because you will learn them while studying CSS. Now let's make use of the above external
CSS file in our following HTML document:
<!DOCTYPE html>
<html>
<head>
<title>HTML External CSS</title>
<link rel="stylesheet" type="text/css" href="/html/style.css">
</head>
<body>
<p class="red">This is red</p>
129
HTML
This is red
This is thick
This is green
Rules defined in internal style sheet overrides the rules defined in an external CSS file.
Example
Let's re-write above example once again, but here we will write style sheet rules in the
same HTML document using <style> tag:
<!DOCTYPE html>
<html>
<head>
<title>HTML Internal CSS</title>
<style type="text/css">
.red{
color: red;
}
.thick{
font-size:20px;
}
.green{
130
HTML
color:green;
}
</style>
</head>
<body>
<p class="red">This is red</p>
This is red
This is thick
This is green
Rules defined inline with the element overrides the rules defined in an external CSS file as
well as the rules defined in <style> element.
Example
Let's re-write above example once again, but here we will write style sheet rules along
with the HTML elements using style attribute of those elements.
<!DOCTYPE html>
<html>
<head>
<title>HTML Inline CSS</title>
</head>
131
HTML
<body>
<p style="color:red;">This is red</p>
This is red
This is thick
This is green
132
26. HTML JAVASCRIPT HTML
A script is a small piece of program that can add interactivity to your website. For
example, a script could generate a pop-up alert box message, or provide a dropdown
menu. This script could be written using JavaScript or VBScript.
You can write various small functions, called event handlers using any of the scripting
language and then you can trigger those functions using HTML attributes.
Now-a-days, only JavaScript and associated frameworks are being used by most of the
web developers, VBScript is not even supported by various major browsers.
You can keep JavaScript code in a separate file and then include it wherever it's needed,
or you can define functionality inside HTML document itself. Let's see both the cases one
by one with suitable examples.
External JavaScript
If you are going to define a functionality which will be used in various HTML documents
then it's better to keep that functionality in a separate JavaScript file and then include that
file in your HTML documents. A JavaScript file will have extension as .js and it will be
included in HTML files using <script> tag.
Example
Consider we define a small function using JavaScript in script.js which has following code:
function Hello()
{
alert("Hello, World");
}
Now let's make use of the above external JavaScript file in our following HTML document:
<!DOCTYPE html>
<html>
<head>
<title>JavaScript External Script</title>
<script src="/html/script.js" type="text/JavaScript"/></script>
</head>
<body>
<input type="button" onclick="Hello();" name="ok" value="Click Me" />
</body>
</html>
133
HTML
This will produce the following result, where you can try to click on the given button:
Internal Script
You can write your script code directly into your HTML document. Usually we keep script
code in header of the document using <script> tag, otherwise there is no restriction and
you can put your source code anywhere in the document but inside <script> tag.
Example
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Internal Script</title>
<base href="http://www.tutorialspoint.com/" />
<script type="text/JavaScript">
function Hello(){
alert("Hello, World");
}
</script>
</head>
<body>
<input type="button" onclick="Hello();" name="ok" value="Click Me" />
</body>
</html>
This will produce the following result, where you can try to click on the given button:
134
HTML
Event Handlers
Event handlers are nothing but simply defined functions which can be called against any
mouse or keyboard event. You can define your business logic inside your event handler
which can vary from a single to 1000s of line code.
Following example explains how to write an event handler. Let's write one simple
functionEventHandler() in the header of the document. We will call this function when any
user brings mouse over a paragraph.
<!DOCTYPE html>
<html>
<head>
<title>Event Handlers Example</title>
<base href="http://www.tutorialspoint.com/" />
<script type="text/JavaScript">
function EventHandler(){
alert("I'm event handler!!");
}
</script>
</head>
<body>
<p onmouseover="EventHandler();">Bring your mouse here to see an alert</p>
</body>
</html>
Now This will produce the following result. Bring your mouse over this line and see the
result:
135
HTML
JavaScript Example:
<script type="text/JavaScript">
<!--
document.write("Hello JavaScript!");
//-->
</script>
VBScript Example:
<script type="text/vbscript">
<!--
document.write("Hello VBScript!")
'-->
</script>
JavaScript Example:
<script type="text/JavaScript">
<!--
document.write("Hello JavaScript!");
//-->
</script>
<noscript>Your browser does not support JavaScript!</noscript>
VBScript Example:
<script type="text/vbscript">
<!--
document.write("Hello VBScript!")
'-->
</script>
<noscript>Your browser does not support VBScript!</noscript>
136
HTML
This saves you from specifying the language every time you use a script tag within the
page. Below is the example:
Note that you can still override the default by specifying a language within the script tag.
137
27. HTML LAYOUTS HTML
A webpage layout is very important to give better look to your website. It takes
considerable time to design a website's layout with great look and feel.
Now- a-days, all modern websites are using CSS and JavaScript based framework to come
up with responsive and dynamic websites but you can create a good layout using simple
HTML tables or division tags in combination with other formatting tags. This chapter will
give you few examples on how to create a simple but working layout for your webpage
using pure HTML and its attributes.
Example
For example, the following HTML layout example is achieved using a table with 3 rows and
2 columns but the header and footer column spans both columns using the colspan
attribute:
<!DOCTYPE html>
<html>
<head>
<title>HTML Layout using Tables</title>
</head>
<body>
<table width="100%" border="0">
<tr>
<td colspan="2" bgcolor="#b5dcb3">
<h1>This is Web Page Main title</h1>
</td>
</tr>
<tr valign="top">
<td bgcolor="#aaa" width="50">
<b>Main Menu</b><br />
HTML<br />
PHP<br />
PERL...
138
HTML
</td>
<td bgcolor="#eee" width="100" height="200">
Technical and Managerial Tutorials
</td>
</tr>
<tr>
<td colspan="2" bgcolor="#b5dcb3">
<center>
Copyright 2007 Tutorialspoint.com
</center>
</td>
</tr>
</table>
</body>
</html>
139
HTML
Example
Here is an example to create three column layout:
<!DOCTYPE html>
<html>
<head>
<title>Three Column HTML Layout</title>
</head>
<body>
<table width="100%" border="0">
<tr valign="top">
<td bgcolor="#aaa" width="20%">
<b>Main Menu</b><br />
HTML<br />
PHP<br />
PERL...
</td>
<td bgcolor="#b5dcb3" height="200" width="60%">
Technical and Managerial Tutorials
</td>
<td bgcolor="#aaa" width="20%">
<b>Right Menu</b><br />
HTML<br />
PHP<br />
PERL...
</td>
</tr>
<table>
</body>
</html>
140
HTML
Although we can achieve pretty nice layouts with HTML tables, but tables weren't really
designed as a layout tool. Tables are more suited to presenting tabular data.
Note: This example makes use of Cascading Style Sheet (CSS), so before understanding
this example you need to have a better understanding on how CSS works.
Example
Here we will try to achieve same result using <div> tag along with CSS, whatever you
have achieved using <table> tag in previous example.
<!DOCTYPE html>
<html>
<head>
<title>HTML Layouts using DIV, SPAN</title>
</head>
<body>
<div style="width:100%">
<div style="background-color:#b5dcb3; width:100%">
<h1>This is Web Page Main title</h1>
</div>
<div style="background-color:#aaa; height:200px;width:100px;float:left;">
<div><b>Main Menu</b></div>
HTML<br />
PHP<br />
PERL...
</div>
141
28. HTML
You can create better layout using DIV, SPAN along with CSS. For more information on
CSS, please refer to CSS Tutorial.
142
28. HTML TAG REFERENCE HTML
Following tags have been introduced in older versions of HTML but all the tags marked
with are part of HTML-5.
143
HTML
144
HTML
145
HTML
146
HTML
147
HTML
148
HTML
149
HTML
Description
The HTML <comment> tag allows authors to comment their HTML code. This tag is
supported by IE only.
It is recommended to use <!--....--> to comment your tags. This tag is compatible to all
browsers.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML <!--....--> Tag</title>
</head>
<body>
<comment>This is a commented line in IE</comment>
<!-- This is a commented line supported by almost every browser. It will not
appear in output as its a comment. -->
</body>
150
HTML
</html>
Browser Support
Browser Support for <comment> tag
Description
The HTML <doctype> tag is used for specifying which version of HTML the document is
using. This is referred to as the document type declaration (DTD).
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML doctype Tag</title>
</head>
<body>
<p>doctype declaration <doctype> is mentioned at the starting of every HTML
document.</p>
</body>
151
HTML
</html>
Declaration
HTML 4.01 has 3 possible doctypes: HTML 4 Strict, HTML 4 Transitional, and HTML 4
Frameset. Every HTML document you create should have one of these three DTDs.
HTML 4 Strict
This document type includes all HTML elements except those that have been deprecated,
and those that appear in frameset documents.
"http://www.w3.org/TR/html4/strict.dtd">
HTML 4 Transitional
This document type includes all HTML elements including those that have been deprecated.
"http://www.w3.org/TR/html4/loose.dtd">;
HTML 4 Frameset
This document type includes all HTML elements in the transitional DTD as well as those in
framed document.
"http://www.w3.org/TR/html4/frameset.dtd">
HTML 5 Declaration
In HTML5 there is only one declaration i.e.
<!DOCTYPE html>
Browser Support
Chrome Firefox IE Opera Safari Android
152
HTML
Description
The HTML <a> tag is used for creating a hyperlink to either another document, or
somewhere within the current document.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML a Tag</title>
</head>
<body>
<p>
This is a link to <a href="http://www.amrood.com">AMROOD.com</a>
</p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <a> tag also supports the following additional attributes:
if shape="rect" then
coords="left,top,right,bottom" Specifies the
if shape="circ" then coordinates
coords appropriate to the
coords="centerx,centery,radius" if
shape="poly" then shape attribute to
coords="x1,y1,x2,y2,..,xn,yn" define a region of an
153
HTML
It specifies what
media the linked
media media_query
document is optimized
for
alternate
designates
stylesheet
start
next
prev
Describes the
contents
relationship between
index
rel the current document
glossary
and the destination
copyright
URI.
chapter
section
subsection
appendix
help
bookmark
154
HTML
prev
contents
index
glossary
copyright
chapter
section
subsection
appendix
help
bookmark
rect rectangle
circ
Specifies the shape of
shape circle
the image map
poly
polygon
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
155
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <abbr> tag is used for indicating an abbreviation like etc., pvt.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML abbr Tag</title>
</head>
<body>
<p>
<abbr title="Private">pvt.</abbr><br />
<abbr title="International Cricket Council">ICC.</abbr> promotes the global
game.<br />
</p>
</body>
</html>
pvt.
ICC promotes the global game.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
156
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <acronym> tag is used for indicating an acronym.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML acronym Tag</title>
</head>
<body>
<p>
<acronym title="HyperText Markup Language">HTML</acronym>
</p>
</body>
</html>
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
157
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <address> tag is used for indicating an address. The address usually renders
in italic.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML address Tag</title>
</head>
<body>
<address>
600 Wisdon Apartments<br />
Filmcity, Kondiura<br />
New Delhi - 50027
</address>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
158
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <applet> tag specifies an applet. It is used for embedding a Java applet within
an HTML document. It is not supported in HTML5.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML applet Tag</title>
</head>
<body>
<applet code="newClass.class" width="300" height="200">
</applet>
</body>
</html>
import java.applet.*;
import java.awt.*;
159
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <> tag also supports the following additional attributes:
codebase URL Indicates the base URL of the applet if the code
attribute is relative
160
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <area> tag is used for defining an area in an image map.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML area Tag</title>
</head>
<body>
<img src=/https/www.scribd.com/images/usemap.gif alt="usemap" border="0"
usemap="#tutorials"/>
<map name="tutorials">
<area shape="poly"
coords="74,0,113,29,98,72,52,72,38,27"
href="/perl/index.htm"
alt="Perl Tutorial"
target="_blank" />
161
HTML
<area shape="rect"
coords="22,83,126,125"
alt="HTML Tutorial"
href="/html/index.htm"
target="_blank" />
<area shape="circle"
coords="73,168,32"
alt="PHP Tutorial"
href="/php/index.htm"
target="_blank" />
</map>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <area> tag also supports the following additional attributes:
162
HTML
if shape="rect" then
coords="left,top,right,bottom" Specifies the coordinates
if shape="circ" then appropriate to the shape attribute
coords
coords="centerx,centery,radius" to define a region of an image for
if shape="poly" then image maps.
coords="x1,y1,x2,y2,..,xn,yn"
alternate
author
bookmark
help
license
Specifies relationship between the
next
rel current document and the target
nofollow
URL
noreferrer
prefetch
prev
search
tag
rect
rectangle Specifies the shape of the image
shape
circ map
circle
163
HTML
poly
polygon
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <article> tag is used in a blog post, forum post, newspaper article etc. It
specifies self-contained composition in a site, document, page or application.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Article Tag</title>
</head>
<body>
164
HTML
<article>
<h2>PHP</h2>
<p>PHP is PHP Hypertext Preprocessor</p>
</article>
</body>
</html>
PHP
PHP is PHP Hypertext Preprocessor.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <aside> tag is used to specify a section of a page aside from the related section.
This tag can be used for glossary definitions, author biography, author profile etc.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML aside Tag</title>
</head>
165
HTML
<body>
<aside>
<h3>Java History</h3>
<p>Java is a programming language developed by James Gosling in 1994.</p>
</aside>
</body>
</html>
Java History
Java is a programming language developed by James Gosling in 1994.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <audio> tag is used to embed audio in web pages.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML audio Tag</title>
</head>
<body>
166
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
Chrome Firefox IE Opera Safari Mobile
Description
The HTML <b> tag specifies bold text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML b Tag</title>
</head>
<body>
This web page gives explanation on <b>bold</b> tag.
</body>
</html>
167
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <base> tag is used to specify a base URI, or URL, for relative links.
For example, you can set the base URL once at the top of your page in header section,
then all subsequent relative links will use that URL as a starting point.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML base Tag</title>
<base href="http://www.tutorialspoint.com" />
</head>
<body>
HTML: <img src="/images/html.gif" />
</body>
</html>
168
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <base> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
169
HTML
The HTML <basefont> tag is used to specify a base font for the document to use. This
base font is applied to complete document. This tag is depreciated now.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML basefont Tag</title>
</head>
<body>
<basefont face="cursive,serif" color="#ff9900" size="4"/>
<p>The HTML basefont tag is now deprecated. You should use CSS font to set font
properties instead.</p>
</body>
</html>
The HTML basefont tag is now deprecated. You should use CSS font to set font properties
instead.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <basefont> tag also supports the following additional attributes:
rgb(x,x,x)
Deprecated - Specifies the color of
color #xxxxxx
the text.
colorname
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
170
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <bdo> tag is used to override the default text direction.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML bdo Tag</title>
</head>
<body>
<bdo dir="rtl">Here's some English embedded in text in another language
requiring a right-to-left presentation.</bdo>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <bdo> tag also supports the following additional attributes:
171
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <bdi> tag is Bi-directional isolation element which is used to embed text with
a different direction from another text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML bdi Tag</title>
</head>
<body>
<p>Tutorialspoint list of tutorials:</p>
<ul>
<li>Web: HTML</li>
<li>Programming: <bdi>Java</bdi></li>
<li>Scripting: <bdi>VBScript</bdi></li>
<li>Mobile: <bdi>Android</bdi></li>
</ul>
</body>
</html>
172
HTML
Web: HTML
Programming: Java
Scripting: VBScript
Mobile: Android
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <bgsound> tag is used to play a soundtrack in the background. This tag is for
Internet Explorer only.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML bgsound Tag</title>
</head>
<body>
<bgsound src="/html/yourfile.mdi"/>
<p>This does create any result on the screen but it plays sound file in the
background.</p>
</body>
</html>
This does create any result on the screen but it plays sound file in the
background.
Specific Attributes
The HTML <bgsound> tag also supports the following additional attributes:
Browser Support
Chrome Firefox IE Opera Safari Android
No No Yes No No No
Description
The HTML <big> tag increases the font size. This tag is not supported in HTML5.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML big Tag</title>
</head>
<body>
<p><big>Website: complieonline.com</big>(Online Compiler)</p>
</body>
</html>
174
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <blink> tag is used to enclose a text to make it blink. This tag was supported
by Netscape and now this is obsolete.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML blink Tag</title>
</head>
<body>
<blink>This text will blink in Netscape Version 5.0</blink>
</body>
</html>
Browser Support
Chrome Firefox IE Opera Safari Android
175
HTML
Description
The HTML <blockquote> tag is used for indicating long quotations (i.e. quotations that
span multiple lines). It should contain only block-level elements within it, and not just
plain text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML blockquote Tag</title>
</head>
<body>
<blockquote>Browsers generally render blockquote text as indented text. If your
quoted text needs to display within a non-quoted paragraph, you should use the
HTML q tag. Most browsers surround q text with quotation marks.</blockquote>
<q>Browsers generally render blockquote text as indented text. If your quoted
text needs to display within a non-quoted paragraph, you should use the HTML q
tag. Most browsers surround q text with quotation marks.</q>
</body>
</html>
Browsers generally render blockquote text as indented text. If your quoted text needs to display
within a non-quoted paragraph, you should use the HTML q tag. Most browsers surround q text
with quotation marks.
Browsers generally render blockquote text as indented text. If your quoted text needs to display
within a non-quoted paragraph, you should use the HTML q tag. Most browsers surround q text
with quotation marks
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <blockquote> tag also supports the following additional attributes:
176
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <body> tag is used for indicating the main content section of the HTML
document.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML body Tag</title>
</head>
<body>
Body of the document...
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
177
HTML
Specific Attributes
The HTML <body> tag also supports the following additional attributes:
link rgb(x,x,x) Deprecated - Specifies the color of all the links in the
#xxxxxx document.
colorname
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <br> tag is used to give a line break.
178
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML br Tag</title>
</head>
<body>
<p>This is before the line break<br />
and this after the line break.</p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <button> tag is used for creating a button within HTML form. You can also use
<input> tag to create similar buttons.
Example
<!DOCTYPE html>
<html>
<head>
179
HTML
Top of Form
Click Me
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <button> tag also supports the following additional attributes:
application
Specifies how the form data is encoded
formenctype multipart/form-data
before sending it to server.
text/plain
get
formmethod Specifies how to send form data.
post
180
HTML
_blank
_self Specifies where the response should be
formtarget
_parent validated.
_top
button
type reset Specifies the button type.
submit
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari
Description
The HTML <canvas> tag is for drawing graphics, animations etc using scripting.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Canvas Tag</title>
</head>
<body>
<canvas id="newCanvas">Your browser does not support canvas tag.</canvas>
<script>
var c=document.getElementById('newCanvas');
var ctx=c.getContext('2d');
181
HTML
ctx.fillStyle='#00FD00';
ctx.fillRect(0,0,200,60);
</script>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <canvas> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <caption> tag is used for creating a caption for a table. There could be only one
caption per table.
Example
<!DOCTYPE html>
<html>
182
HTML
<head>
<title>HTML caption Tag</title>
</head>
<body>
<h2>Cricketers List</h2>
<table width="100%">
<caption>Indian Cricketers</caption>
<th>Name</th>
<tr><td>Sachin Tendulkar</td></tr>
<tr><td>M S Dhoni</td></tr>
<tr><td>Suresh Raina</td></tr>
<tr><td>Virat Kohli</td></tr>
</table>
</body>
</html>
Cricketers List
Indian Cricketers
Name
Sachin Tendulkar
M S Dhoni
Suresh Raina
Virat Kohli
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
183
HTML
Description
The HTML <center> tag is used for centering the content enclosed with this tag. This tag
is depreciated.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML center Tag</title>
</head>
<body>
<center>This text is centered</center>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <cite> tag specifies a citation. It can be defined as title of a work.
184
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML cite Tag</title>
</head>
<body>
<p>The learning content can be referred from <cite>Data Structures & Algorithms
in Java</cite><p>
</body>
</html>
The learning content can be referred from Data Structures & Algorithms in Java
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <code> tag specifies computer code text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML code Tag</title>
</head>
185
HTML
<body>
<p>The header file for C++ Program is :<code>#include<iostream.h></code>.</p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <col> tag allows authors to group together attribute specifications for table
columns. It does not group columns together structurally -- that is the role of the element.
The elements are empty and serve only as a support for attributes.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML col Tag</title>
</head>
<body>
<p>This example shows a colgroup that has three columns of different
widths:</p>
<table border="1">
<colgroup span="3">
186
HTML
<col width="50"></col>
<col width="100"></col>
<col width="150"></col>
<col width="50"></col>
</colgroup>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</td>
</tr>
</table>
</body>
</html>
This example shows a colgroup that has three columns of different widths:
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <col> tag also supports the following additional attributes:
right
left
Defines horizontal alignment, not supported in
align center
Html5.
justify
char
187
HTML
bottom
middle
valign Defines vertical alignment, not supported in Html5.
top
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <colgroup> tag is used for specifying properties for a group of columns within
a table.
If you need to apply different properties to a column within a colgroup, you can use the
HTML col tag within the colgroup tag..
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML colgroup Tag</title>
</head>
<body>
<p>This example shows a colgroup that has three columns of different
widths:</p>
<table border="1">
188
HTML
<colgroup span="3">
<col width="50"></col>
<col width="100"></col>
<col width="200"></col>
</colgroup>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
</tr>
</table>
</body>
</html>
This example shows a colgroup that has three columns of different widths:
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <colgroup> tag also supports the following additional attributes:
right
left
Defines horizontal alignment, not supported in
align center
Html5.
justify
char
189
HTML
bottom
middle
valign Defines vertical alignment, not supported in Html5.
top
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <comment> tag allows authors to comment their HTML code. This tag is
supported by IE only.
It is recommended to use <!--....--> to comment your tags. This tag is compatible with
all browsers.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML <!--....--> Tag</title>
</head>
<body>
<comment>This is a commented line in IE</comment>
<!-- This is a commented line supported by almost every browser. It will not
appear in output as its a comment. -->
</body>
190
HTML
</html>
Browser Support
Browser Support for <comment> tag
Description
The HTML <datalist> tag specifies set of options for <input> element.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Datalist Tag</title>
</head>
<body>
<input list="tutorials" />
<datalist id="tutorials">
<option value="Java">
<option value="ASP">
<option value="PHP">
<option value="Ruby">
<option value="jQuery">
</datalist>
191
HTML
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <dd> tag is used for specifying a definition description in a definition list.
A definition list is similar to other lists but in a definition list, each list item contains two
entries; a term and a description.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML dd Tag</title>
</head>
<body>
<dl>
<dt>Definition List</dt>
<dd>A list of terms and their definitions/descriptions.</dd>
<dt>HTML</dt>
<dd>An HTML tutorial.</dd>
192
HTML
<dt>PHP</dt>
<dd>An PHP tutorial.</dd>
</dl>
</body>
</html>
Definition List
HTML
An HTML tutorial.
PHP
An PHP tutorial.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <del> tag is used for markup of deleted text.
Example
<!DOCTYPE html>
<html>
193
HTML
<head>
<title>HTML del Tag</title>
</head>
<body>
<p>Following text is deleted using <del>HTML del tag
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <del> tag also supports the following additional attributes:
datetime YYYYMMDD Defines the date and time the text was deleted.
HH:MM:SS
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <dfn> tag specifies a definition term.
194
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML dfn Tag</title>
</head>
<body>
<dl>
<dt>
<dfn>
<abbr title="Java Server Pages">JSP</abbr>
</dfn>
</dt>
<dd>JSP is used to create dynamically generated web pages.</dd>
</dl>
</body>
</html>
JSP
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
195
HTML
<!Doctype html>
<html>
<head>
<title>HTML dialog Tag</title>
</head>
<body>
<dialog open>this will be shown in a dialog</dialog>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <dialog> tag also supports the following additional attributes:
open open opens a dialog box and user can interact with it
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
196
HTML
The HTML <dir> tag is used for specifying a directory list. This is very similar to <ul> tag but now
this is deprecated.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML dir Tag</title>
</head>
<body>
<dir>
<li>dir</li>
<li>menu</li>
<li>ul</li>
</dir>
</body>
</html>
dir
menu
ul
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <dir> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
197
HTML
Description
The HTML <div> tag is used for defining a section of your document. With the div tag, you
can group large sections of HTML elements together and format them with CSS.
The difference between the div tag and the span tag is that the div tag is used with block-
level elements whilst the span tag is used with inline elements.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML div Tag</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<div id="contentinfo">
<p>Welcome to our website. We provide tutorials on various subjects.</p>
</div>
</body>
</html>
#contentinfo p {
line-height: 20px;
margin: 30px;
padding-bottom: 20px;
text-align: justify;
width: 140px;
color: red;
}
198
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <div> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <dl> tag is used for declaring a definition list. This tag is used within <dd> tag.
A definition list is similar to other lists but in a definition list, each list item contains two
entries; a term and a description.
Example
199
HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML dl Tag</title>
</head>
<body>
<dl>
<dt>Definition List</dt>
<dd>A list of terms and their definitions/descriptions.</dd>
<dt>HTML</dt>
<dd>An HTML tutorial.</dd>
<dt>PHP</dt>
<dd>An PHP tutorial.</dd>
</dl>
</body>
</html>
Definition List
HTML
An HTML tutorial.
PHP
An PHP tutorial.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
200
HTML
Description
The HTML <dt> tag is used to define the start of a term in a definition list.
A definition list is similar to other lists but in a definition list, each list item contains two
entries; a term and a description.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML dt Tag</title>
</head>
<body>
<dl>
<dt>Definition List</dt>
<dd>A list of terms and their definitions/descriptions.</dd>
<dt>JAVA</dt>
<dd>Tutorial on JAVA Programming Language.</dd>
<dt>Android</dt>
<dd>Tutorial on Android Operating System.</dd>
</dl>
</body>
</html>
Definition List
JAVA
201
HTML
Android
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <em> tag formats the text in a document. It specifies emphasized text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML em Tag</title>
</head>
<body>
<p>Insert an image in a web page using <em>image</em> tag.</p>
</body>
</html>
Global Attributes
202
HTML
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <embed> tag represents a container for external application or interactive
content.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Embed Tag</title>
</head>
<body>
<embed src="/html/yourfile.mid" width="250" height="100" />
</body>
</html>
Global Attributes
203
HTML
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <video> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <fieldset> tag is used for grouping related form elements. By using the fieldset
tag and the legend tag, you can make your forms much easier to understand for your
users.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML fieldset Tag</title>
</head>
<body>
204
HTML
<form>
<fieldset>
<legend>Details</legend>
Student Name: <input type="text"><br />
MCA Subjects:<input type="text"><br />
Course Link:<input type="url" name="websitelink">
</fieldset>
</form>
</body>
</html>
DetailsStudent Name:
MCA Subjects:
Course Link:
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <fieldset> tag also supports the following additional attributes:
left
right
align center Deprecated - Specifies the content alignment.
top
bottom
205
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <figcaption> tag specifies a caption for an element.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Figcaption Tag</title>
</head>
<body>
<figure><img src="http://www.tutorialspoint.com/scripts/img/logo.png"/>
<figcaption>Tutorials Point Logo</figcaption>
</figure>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
206
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <figure> tag specifies self-contained content.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Figure Tag</title>
</head>
<body>
<h2>Tutorials Point Logo<h2>
<figure><img src="http://www.tutorialspoint.com/scripts/img/logo.png"/>
</figure>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
207
HTML
Description
The HTML <font> tag is used to specify the font of the text. It is deprecated in HTML as
well as in XHTML.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML font Tag</title>
</head>
<body>
<font face="cursive,serif" color="#ff9900" size="4">
The HTML font tag is now deprecated. You should use start using CSS to set font
size and family.
</font>
</body>
</html>
The HTML font tag is now deprecated. You should use start using CSS to set font
size and family.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <font> tag also supports the following additional attributes:
208
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <footer> tag specifies a footer for a document or section.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Footer Tag</title>
</head>
<body>
<header>
<h1>Simply Easy Learning</h1>
<p>You're visiting tutorialspoint.com - tutorial hub for simply easy
learning.</p>
</header>
<footer>
Copyright 2014, All Rights Reserved
209
HTML
</footer>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <form> tag is used for creating a form for user input. A form can contain
textfields, checkboxes, radio-buttons and more. Forms are used to pass user-data to a
specified URL.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML form Tag</title>
</head>
<body>
<form action="/cgi-bin/hello_get.cgi" method="get">
First name:
<input type="text" name="first_name" value="" maxlength="100" />
210
HTML
<br />
Last name:
<input type="text" name="last_name" value="" maxlength="100" />
<input type="submit" value="Submit" />
</form>
</body>
</html>
First name:
Submit
Last name:
Bottom of Form
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <form> tag also supports the following additional attributes:
211
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <frame> tag is used to specify each frame within a frameset tag. This tag is
not supported in HTML5.
Example
<!DOCTYPE html>
<html>
<head>
212
HTML
This will produce the following result, refer the image given below. The left frame is
menu.htm and the right one is main.htm:
Specific Attributes
The HTML <frame> tag also supports the following additional attributes:
213
HTML
yes
scrolling no Determines scrollbar action.
auto
Browsers Supported
Chrome Firefox IE Opera Safari Android
Description
The HTML <frameset> tag is used to divide the window into frames. This tag is not
supported in HTML5.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML frameset Tag</title>
</head>
<body>
<frameset cols="200, *">
214
HTML
This will produce the following result, refer the image given below. The left frame is
menu.htm and the right one is main.htm:
Specific Attributes
The HTML <frameset> tag also supports the following additional attributes:
215
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <h1> to <h6> tag is used to define headings in an HTML document. <h1>
defines largest heading and <h6> defines smallest heading.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML <h1> to <h6> Tag</title>
</head>
<body>
<h1>Around the World</h1>
<h2>Asian Countries</h2>
<h3>India</h3>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <h1> to <h6> tag also supports the following additional attributes:
216
HTML
left
right Deprecated - Specifies the alignment of the content
align
center enclosed.
justify
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <head> tag is used for indicating the head section of the HTML document. Tags
included inside head tags are not displayed on browser window.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML head Tag</title>
</head>
<body>
actual content goes here
</body>
</html>
Specific Attributes
The HTML <head> tag also supports the following additional attributes:
217
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <header> tag specifies a header for a document or section.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Header Tag</title>
</head>
<body>
<header>
<h1>Simply Easy Learning</h1>
<p>You're visiting tutorialspoint.com - tutorial hub for simply easy
learning.</p>
</header>
</body>
</html>
218
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <hr> tag is used for creating a horizontal line. This is also called Horizontal Rule
in HTML.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML hr Tag</title>
</head>
<body>
<p>This text will be followed by a horizontal line <hr /></p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <hr> tag also supports the following additional attributes:
219
HTML
left
Deprecated-Specifies the alignment of the
align right
horizontal rule.
center
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <html> tag is the container that contains all other HTML elements except for
the !doctype tag which is located before the opening <html> tag. All other HTML elements
are nested between the <html> and </html> tags.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML html Tag</title>
</head>
<body>
<p>Actual content goes here... </p>
220
HTML
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <i> tag is used to display the content in italic.
Example
<!DOCTYPE html>
<html>
<head>
221
HTML
<title>HTML i Tag</title>
</head>
<body>
<p>We liked the movie <i>3 Idiots</i></p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <iframe> tag is used to create an inline frame.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML iframe Tag</title>
</head>
<body>
<iframe src ="http://www.tutorialspoint.com/index.htm" width="100%"></iframe>
</body>
</html>
222
HTML
This word is shifted down, while this one is shifted over. With a negative
value, words can be moved up and to the left.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <iframe> tag also supports the following additional attributes:
left
right
Specifies how to align the iframe according to
align top
the surrounding text
middle
bottom
223
HTML
allow-scripts
allow-top-navigation
yes
scrolling no Determines scrollbar action
auto
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <ilayer> tag is used to create a layer that occupies space in the containing text
flow. Subsequent content is placed after the space occupied by the <ilayer>.
This is in contrast to the <layer> tag, which creates a layer above the containing text flow,
allowing subsequent content to be placed under the layer just created.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML ilayer Tag</title>
224
HTML
</head>
<body>
This <ilayer top="4">word</ilayer> is shifted down, while
this <ilayer left="10">one</ilayer> is shifted over. With a negative
value, words can be moved <ilayer top="-4">up</ilayer> and to
the <ilayer left="-10">left</ilayer>.
</body>
</html>
This word is shifted down, while this one is shifted over. With a negative value,
words can be moved up and to the left.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <ilayer> tag also supports the following additional attributes:
above layer The name of the inline layer that will be positioned
name directly above the current layer in the z-order.
background URL A filename or URL for an image upon which the inline
layer's text and images will appear.
below layer The name of the inline layer that will be positioned
name directly below the current layer in the z-order.
bgcolor rgb(x,x,x) The color to use for the inline layer background.
#xxxxxx
colorname
left number The position of the left side of the inline layer. If the
current inline layer is part of another layer.called the
225
HTML
pagex number The position of the left side of the inline layer relative
to the browser window.
pagey number The position of the top of the inline layer relative to
the browser window.
src URL The URL of a page that will appear inside the inline
layer.
top number The position of the top of the inline layer. If the
current inline layer is part of another layer--called the
parent layer--then the position is relative to the
parent layer.
z-index number The inline layer's position within the z-order. Inline
layers with higher Z-INDEX values are positioned
above inline layers with lower Z-INDEX values.
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
No No No No No No
226
HTML
Description
The HTML <img> tag is used to put an image in an HTML document.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Tag</title>
</head>
<body>
<img src="http://www.tutorialspoint.com/images/html.gif" alt="HTML Tutorial"
height="150" width="140" />
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <img> tag also supports the following additional attributes:
top
bottom
Deprecated-Specifies the alignment for
align middle
the image.
left
right
227
HTML
Deprecated-Specifies a URI/URL of a
long description - this can elaborate on
longdesc text
a shorter description specified with the
alt attribute.
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
228
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <input> tag is used within a form to declare an input element - a control that
allows the user to input data.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML input Tag</title>
</head>
<body>
<form action="/cgi-bin/hello_get.cgi" method="get">
First name:
<input type="text" name="first_name" value="" maxlength="100" />
<br />
Last name:
<input type="text" name="last_name" value="" maxlength="100" />
<input type="submit" value="Submit" />
</form>
</body>
</html>
First name:
Submit
Last name:
229
HTML
Bottom of Form
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <input> tag also supports the following additional attributes:
Specifies a comma-
separated list of content
accept content types
types that the server
accepts.
left
right
Deprecated-Defines the
align top
alignment of content
middle
bottom
If type="radio" or
type="checkbox" it will
checked checked
already be selected when
the page loads.
230
HTML
231
HTML
Specifies a regular
expression that an <input>
pattern regexp
element's value is checked
against
button
checkboxcolor
date Specifies the type of
type
datetime control.
datetime-local
email
232
HTML
file
hidden
image
month
number
password
radio
range
reset
search
submit
tel
text
time
url
week
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <ins> tag is used to indicate newly inserted text.
Example
<!DOCTYPE html>
<html>
233
HTML
<head>
<title>HTML ins Tag</title>
</head>
<body>
<p>Following text is inserted newly <ins>HTML ins tag</ins>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <ins> tag also supports the following additional attributes:
YYYYMMDD
datetime Defines the date and time the text was deleted.
HH:MM:SS
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
234
HTML
Description
The HTML <isindex> tag is used for querying a document through a text field. The tag can
be used anywhere but head tag is preferable. It is a deprecated tag and should not be
used.
<!Doctype html>
<html>
<head>
<title>HTML isindex Tag</title>
<isindex prompt = "Search" />
</head>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <isindex> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Yes (partial) Yes (partial) Yes (partial) Yes (partial) Yes (partial) No
235
HTML
Description
The HTML <kbd> tag defines keyboard input. It is a phrase tag.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML kbd Tag</title>
</head>
<body>
<p>Open previously closed tab using
<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>T</kbd>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <keygen> tag is used to process Web forms with certificate management
systems. The element generates a secure key and submits the public key.
236
HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML keygen Tag</title>
</head>
<body>
<form>
<keygen name="random_key" challenge="0987654321">
<input name="firstname" value="first name">
</form>
</body>
</html>
first name
Bottom of Form
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <keygen> tag also supports the following additional attributes:
autofocus autofocus Specifies that when the page loads the <keygen>
element automatically gets focus.
237
HTML
keytype rsa Specifies the secret algorithm which is for the key.
dsa
ec
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <label> tag is used to add a label to a form control like text, textarea etc.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML label Tag</title>
</head>
<body>
<label for="email">EMAIL-ID:<br /> <input type="email" value="" name="emailid"
size="30" placeholder="Enter a valid email address"><br /><br />
<label for="phone">PHONE NO:<br /> <input type="text" value="" name="phno"
size="30" maxlength="10" placeholder="Enter a valid phone number" pattern="[0-
9]{10}"><br /><br />
</body>
</html>
238
HTML
EMAIL-ID:
PHONE NO:
Bottom of Form
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <label> tag also supports the following additional attributes:
for control id Specifies the input control that this label is for. This
value must be the same as the value in the input
control's "id" attribute.
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <layer> tag is used to position and animate (through scripting) elements in a
page. A layer can be thought of as a separate document that resides on top of the main
one, all existing within one window.
239
HTML
Example
This example creates three overlapping layers. The back one is red, the middle one is blue,
and the front one is green.
<!DOCTYPE html>
<html>
<head>
<title>HTML layer Tag</title>
</head>
<body>
<layer id="layer1" top="250" left="50" width="200"
height="200" bgcolor="red">
<p>layer 1</p>
</layer>
<layer id="layer2" top="350" left="150" width="200"
height="200" bgcolor="blue">
<p>layer 2</p>
</layer>
<layer id="layer3" top="450" left="250" width="200"
height="200" bgcolor="green">
<p>layer 3</p>
</layer>
</body>
</html>
This will produce the following result, it will work in Netscape 4 and higher versions.
layer 1
layer 2
layer 3
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <layer> tag also supports the following additional attributes:
240
HTML
above layer name The name of the inline layer that will be positioned
directly above the current layer in the z-order.
background URL A filename or URL for an image upon which the inline
layer's text and images will appear.
below layer name The name of the inline layer that will be positioned
directly below the current layer in the z-order.
bgcolor rgb(x,x,x) The color to use for the inline layer background.
#xxxxxx
colorname
left number The position of the left side of the inline layer. If the
current inline layer is part of another layer.called the
parent layer-then the position is relative to the
parent layer.
pagex number The position of the left side of the inline layer
relative to the browser window.
pagey number The position of the top of the inline layer relative to
the browser window.
src URL The URL of a page that will appear inside the inline
layer.
top number The position of the top of the inline layer. If the
current inline layer is part of another layer--called
the parent layer--then the position is relative to the
parent layer.
241
HTML
z-index number The inline layer's position within the z-order. Inline
layers with higher Z-INDEX values are positioned
above inline layers with lower Z-INDEX values.
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
No No No No No No
Description
The HTML <legend> tag s used to define a caption for <fieldset> tag.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML legend Tag</title>
</head>
<body>
<form>
<fieldset>
<legend>Details</legend>
Student Name: <input type="text"><br />
MCA Subjects:<input type="text"><br />
Course Link:<input type="url" name="websitelink">
</fieldset>
</form>
</body>
</html>
242
HTML
DetailsStudent Name:
MCA Subjects:
Course Link:
Bottom of Form
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <legend> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
HTML <li>Tag
Description
The HTML <li> tag is used for specifying a list item in ordered, unordered, directory, and
menu lists.
Example
<!DOCTYPE html>
<html>
243
HTML
<head>
<title>HTML li Tag</title>
</head>
<body>
<ul>
<li>ol - ordered list</li>
<li>ul - unordered list</li>
<li>dir - directory list</li>
<li>menu - menu list</li>
</ul>
</body>
</html>
ol - ordered list
ul - unordered list
dir - directory list
menu - menu list
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <li> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
244
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <link> tag is used for defining a link to an external document. It is placed in
the <head> section of the document.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML link Tag</title>
<link rel="stylesheet" href="stylenew.css">
</head>
<body>
<div id="contentinfo">
<p>Welcome to our website. We provide tutorials on various subjects.</p>
</div>
</body>
</html>
#contentinfo p {
line-height: 20px;
margin: 30px;
padding-bottom: 20px;
text-align: justify;
width: 140px;
color: red;
}
245
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <link> tag also supports the following additional attributes:
screen
tty
tv
projection
Specifies the device the document will be displayed
media handheld
on
print
braille
aural
all
alternate
appendix
bookmark
chapter Describes the relationship between the current
rel contents document and the destination URL.
copyright
glossary
help
home
246
HTML
index
next
prev
section
start
stylesheet
subsection
alternate
appendix
bookmark
chapter
contents
copyright
glossary
help Describes a reverse between the destination URI
rev
home and the current document.
index
next
prev
section
start
stylesheet
subsection
blank
_self
target Specifies the target frame to load the page into.
_top
_parent
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
247
HTML
Description
The HTML <main> tag specifies main or important content in the document. It can be
used only once per page and can't be used as a descendent of <article>, <aside>,
<footer>, <header>, <nav> element.
Example
<!DOCTYPE html>
<html>
<body>
<main>
<h1>Learning</h1>
<p>Learn to gain experience and try to share your knowledge with others.</p>
<article>
<h3>Web Development Tutorials</h3>
<p>Consist of CSS, HTML, and PHP tutorials for 2nd Semester exams.</p>
</article>
<article>
<h3>Academic Tutorials</h3>
<p>Consist of Computer Fundamental, Computer Network tutorials for 1st
Semester exams.</p>
</article>
</main>
</body>
</html>
Learning
Learn to gain experience and try to share your knowledge with others.
Web Development Tutorials
Consist of CSS, HTML, and PHP tutorials for 2nd Semester exams.
Academic Tutorials
Consist of Computer Fundamental, Computer Network tutorials for 1st Semester
exams.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
248
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <map> tag is used for defining an image map along with <img> tag.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML map Tag</title>
</head>
<body>
<img src="/images/html.gif" alt="HTML Map" border="0" usemap="#html"/>
249
HTML
This will produce the following result, find the image map on bottom right:
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <map> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <mark> tag specifies a text highlighted for reference purposes, that is for its
relevance in another context.
Example
<!DOCTYPE html>
<html>
250
HTML
<head>
<title>HTML Mark Tag</title>
</head>
<body>
<h2>Cricketers in India</h2>
<p>Sachin Tendulkar is <mark>god</mark> of cricket.</p>
</body>
</html>
Cricketers in India
Sachin Tendulkar is god of cricket.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <marquee> tag is used for scrolling piece of text or image displayed either
horizontally across or vertically down your web site page depending on the settings.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML marquee Tag</title>
</head>
<body>
251
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <marquee> tag also supports the following additional attributes:
scroll
behavior slide Defines the type of scrolling.
alternate
rgb(x,x,x)
Deprecated-Defines the direction of scrolling the
bgcolor #xxxxxx
content.
colorname
up
down
direction Defines the direction of scrolling the content.
left
right
252
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <menu> tag is used for creating a menu list. This tag has been deprecated in
HTML and redefined in HTML5.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML menu Tag</title>
</head>
<body>
<menu>
<li>ol - ordered list</li>
<li>ul - unordered list</li>
<li>dir - directory list</li>
<li>menu - menu list</li>
</menu>
</body>
</html>
ol - ordered list
ul - unordered list
dir - directory list
menu - menu list
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <menu> tag also supports the following additional attributes:
popup
type toolbar Specifies the type of menu to be displayed.
context
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
No Yes No No No No
Description
The HTML <menuitem> tag is used for defining a menu item for a menu.
<!Doctype html>
<html>
<head>
<title>HTML menuitem Tag</title>
</head>
<body>
254
HTML
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <menuitem> tag also supports the following additional attributes:
command
255
HTML
checkbox
defines type of command for a menuitem default is
type command
command
radio
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
No Yes No No No No
Function
The HTML <meta> tag is used for declaring metadata for the HTML document.
Example
<html>
<head>
<title>HTML meta tag</title>
<meta name="keywords" content="HTML, meta tag, metadata" />
<meta name="description" content="Brief description of the document" />
<meta http-equiv="refresh" content="10" />
</head>
<body style="background-color:orange">
Document content goes here
</body>
</html>
256
HTML
Attributes
Attribute Value Description
Standard Attributes
Attribute Description
Description
The HTML <meter> tag specifies a scalar measurement within a known range (a gauge).
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML meter Tag</title>
</head>
257
HTML
<body>
<meter value="7" min="0" max="10">2 out of 10</meter><br />
<p>gauge value can be seen here</p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <meter> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
258
HTML
Function
The HTML <multicol> tag is used to create multiple columns of text and lets you control
the size and number of the columns.
The <multicol> tag can contain any other HTML content, much like the <div> tag. All of
the content within the <multicol> tag is displayed just like conventional content, except
that Netscape 4 places the contents into multiple columns instead of just one.
Example
Following example will create a three columns layout in Netscape 4.
<h1>Breaking News</h1>
<multicol cols=3>
<p>State media said more than 2,000 soldiers, police and miners closed the
breach in the dike in Shandong province early Sunday and installed pipes and
five high-speed pumps, but gave no indication if there were any signs of
life.<p>
<p>The Huayuan Mining Co. mine flooded on Friday afternoon when the Wen river
burst a dike, sending water pouring into a shaft and trapping 172 miners,
Xinhua and state television said.<p>
</multicol>
Attributes
Attribute Value Description
specifies the number of text columns for the text display. The
browser attempts to flow elements evenly across the columns to
cols number make each column be about the same height. Unless the WIDTH
attribute is present, column width is adjusted to fill the available
width.
259
HTML
specifies the width of each column in pixels. All columns are the
width number same width. If this attribute is not present, its value is calculated
from the gutter width and the number of columns.
Standard Attributes
Attribute Description
Description
The HTML <nav> tag specifies a section that contains only navigation links.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Nav Tag</title>
</head>
<body>
<p>Database Tutorials:</p>
<nav>
<a href="dbms/index.htm">DBMS</a> |
<a href="mongodb/index.htm">MongoDB</a> |
<a href="mysql/index.htm">MySQL</a> |
<a href="plsql/index.htm">PL/SQL</a> |
260
HTML
<a href="sql/index.htm">SQL</a>
</nav>
</body>
</html>
Database Tutorials:
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <nobr> tag is used to instruct the browser not to break the specified text (such
as the usual line wrap that occurs at the right edge of the browser window).
This is used with the <wbr> tag, <wbr> advises the extended browser when it may insert
a line break in an otherwise nonbreakable sequence of text. Unlike the <br> tag, which
always causes a line break, even within a <nobr>- tagged segment, the <wbr> tag works
only when placed inside a <nobr>- tagged content segment and causes a line break only
if the current line has already extended beyond the browser's display window margins.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML nobr Tag</title>
</head>
261
HTML
<body>
<nobr>
This is a very long sequence of text that is
forced to be on a single line, even if doing so causes
<wbr />
the browser to extend the document window beyond the
size of the viewing pane and the poor user must scroll right
<wbr />
to read the entire line.
</nobr>
</body>
</html>
This is a very long sequence of text that is forced to be on a single line, even if doing so
causes the browser to extend the document window beyond the size of the viewing pane
and the poor user must scroll right to read the entire line.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
This tag is available in Netscape 4 and higher version only.
No No No No No No
Description
The HTML <noembed> tag is used to handle browsers which do not support the <embed>
tag. The <noembed> tag makes it easy to supply alternative content that tells users what
they are missing.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML noembed Tag</title>
262
HTML
</head>
<body>
<embed src="/html/yourfile.swf" width="200" height="200" >
<noembed><img src="yourimage.gif" alt="Alternative Media" ></noembed>
</embed>
</body>
</html>
The message inside <noembed> tag will appear only when your browser does not support
<embed> tag. So based on your browser it will display following result:
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <noframes> tag is used to handle the browsers which do not support <frame>
tag. This tag is used to display alternate text message.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML noframes Tag</title>
</head>
<body>
<frameset cols="200, *">
<frame src="/html/menu.htm" name="menu_page" />
<frame src="/html/main.htm" name="main_page" />
<noframes>
Your browser does not support frames.
</noframes>
</frameset>
</body>
263
HTML
</html>
This will produce the following result,refer the image given below. The left frame is
menu.htm and the right one is main.htm. If the browser doesn't support frames, it will
display the message "Your browser does not support frames."
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <noscript> tag is used to handle the browsers which do recognize <script> tag
but do not support scripting. This tag is used to display alternate text message.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML noscript Tag</title>
</head>
<body>
<script type="text/JavaScript">
264
HTML
<!--
document.write("Hello JavaScript!")
-->
</script>
<noscript>
Your browser does not support JavaScript!
</noscript>
</body>
</html>
This will produce the following result, browser that doesn't support will show the text under
<noscript> tag as output ie. "Your browser does not support JavaScript!".
Hello JavaScript!
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <object> tag is used to embed multimedia in an HTML document. The <param>
tag is also used along with this tag to define various parameters.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML object Tag</title>
</head>
<body>
265
HTML
alt : test.htm
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <object> tag also supports the following additional attributes:
left
right
align Defines visual alignment of the object
top
bottom
266
HTML
object
name Specifies a unique name for the object
name
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <ol> tag is used for creating an ordered list.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML ol Tag</title>
</head>
267
HTML
<body>
<ol>
<li>ol - ordered list</li>
<li>ul - unordered list</li>
<li>dir - directory list</li>
<li>menu - menu list</li>
</ol>
</body>
</html>
ol - ordered list
ul - unordered list
dir - directory list
menu - menu list
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <ol> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
268
HTML
Description
The HTML <optgroup> tag is used for grouping related options within your select list. This
makes it easier for users to comprehend their choices when looking at a large list.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML optgroup Tag</title>
</head>
<body>
<select>
<optgroup label="India">
<option value ="mumbai">Mumbai</option>
<option value ="delhi">Delhi</option>
</optgroup>
<optgroup label="USA">
<option value ="florida">Florida</option>
<option value ="newyork">New York</option>
</optgroup>
</select>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
269
HTML
Specific Attributes
The HTML <optgroup> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <option> tag is used within a form for defining options in the drop-down list.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML option Tag</title>
</head>
<body>
<form action="/cgi-bin/dropdown.cgi" method="post">
<select name="dropdown">
<option value="Java" selected>Maths</option>
<option value="Ruby">Physics</option>
</select>
<input type="submit" value="Submit" />
270
HTML
</form>
</body>
</html>
Java Submit
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <option> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
271
HTML
Description
The HTML <output> tag specifies the result of a calculation.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Output Tag</title>
</head>
<body>
<form
oninput="sumresult.value=parseInt(z1.value)+parseInt(z2.value)+parseInt(z3.valu
e)">
<input type="range" name="z1" value="0" /> +
<input type="number" name="z2" value="20" /> +
<input type="number" name="z3" value="40" /><br />
The output is: <output name="sumresult"></output>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <output> tag also supports the following additional attributes:
272
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <p> tag defines a paragraph of text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML p Tag</title>
</head>
<body>
<p>This paragraph is defined using the HTML p tag</p>
</body>
</html>
Global Attributes
273
HTML
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <p> tag also supports the following additional attributes:
left
right
align Specifies text alignment within a paragraph.
center
justify
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <param> tag is used for passing parameters to an embedded object using
<object> tag.
Example
You can specify some parameters related to the document with the tag. Here is an example
to embed a wav file:
<!DOCTYPE html>
<html>
<head>
<title>HTML param Tag</title>
</head>
<body>
<object title="Test Object." classid="java.class">
<param name="audio" value="music.wav" />
<param name="width" value="600" />
274
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <param> tag also supports the following additional attributes:
type MIME type Specifies the internet media type for the parameter.
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
275
HTML
Description
The HTML <plaintext> tag is used to render all text in the document exactly as it was
typed in, including all tags and even the document tags.
This tag ignores all formatting for the rest of the document, displaying all text exactly as
is. It cannot be stopped, it cannot be turned off. It is deprecated because it messes up the
balance of the document tags.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML plaintext Tag</title>
</head>
<body>
</body>
</html>
Browser Support
This tag is available in Netscape 4 and higher version only.
No No No No No No
Description
The HTML <pre> tag is used for indicating preformatted text. The code tag surrounds the
code being marked up.
Browsers normally render pre text in a fixed-pitched font, with whitespace in tact, and
without word wrap.
Example
276
HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML pre Tag</title>
</head>
<body>
<pre>
This text is
in a fixed-pitch
font, and it preserves
both spaces and line breaks
</pre>
</body>
</html>
This text is
in a fixed-pitch
font, and it preserves
both spaces and line breaks
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <pre> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
277
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <progress> tag specifies a completion progress of a task. It is displayed as a
progress bar. The value of progressbar can be manipulated by JavaScript.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Progress Tag</title>
</head>
<body>
<h1>Student's Intelligence level</h1>
<progress value="20" max="100"/>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
278
HTML
The HTML <progress> tag also supports the following additional attributes:
max max It should have a value greater than zero and a valid
floating point number.
value value Specifies how much of the task that has been
completed. It should be a floating point number
between 0 and max or 0 and 1 if max is omitted.
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <q> tag is used for indicating short quotations (i.e. quotations that span
multiple lines).
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML q Tag</title>
</head>
<body>
Here comes a short quotation: <q> here is a short quotation </q>
</body>
</html>
279
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <q> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
HTML Rp Tag
Description
The HTML <rp> tag specifies to show browsers that do not support the ruby annotations.
Ruby Annotations are used in East Asian typography.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Rp Tag</title>
</head>
<body>
<ruby>
<rp>(</rp><rt>Kan</rt><rp>)</rp>
<rp>(</rp><rt>ji</rt><rp>)</rp>
280
HTML
</ruby>
</body>
</html>
Kanji
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
HTML Rt Tag
Description
The HTML <rt> tag is used for pronunciation of character in ruby annotations. These are
for showing pronunciation of East Asian characters.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Rt Tag</title>
</head>
<body>
<ruby>
<rp>(</rp><rt>Kan</rt><rp>)</rp>
<rp>(</rp><rt>ji</rt><rp>)</rp>
</ruby>
</body>
281
HTML
</html>
Kanji
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <ruby> tag specifies ruby annotations which are for East Asian characters
pronunciation.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Ruby Tag</title>
</head>
<body>
<ruby>
<rp>(</rp><rt>This is it</rt><rp>)</rp>
</ruby>
</body>
</html>
282
HTML
This is it
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <strike> tag specifies strikethrough text. This tag is deprecated now, <del>
should be used instead.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML strike Tag</title>
</head>
<body>
The HTML strike tag renders a <strike>strike</strike> through the middle of the
text .
</body>
</html>
The HTML strike tag renders a strike through the middle of the text.
Global Attributes
283
HTML
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Function
Phrase elements add structural information to text fragments. The usual meanings of
phrase elements are following:
Example
<abbr>pvt. or inc.</abbr><br />
<acronym>HTML</acronym><br />
<cite>Citation</cite><br />
<em>Emphasized text</em><br />
<strong>Strong text</strong><br />
<dfn>Definition term</dfn><br />
284
HTML
pvt. or inc.
HTML
Citation
Emphasized text
Strong text
Definition term
Computer code text
Sample computer code text
Keyboard text
Variable
Online Practice
To Become more comfortable - Do Online Practice
Standard Attributes
Attribute Description
Event Attributes
Attribute Description
285
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <script> tag is used for declaring a script (such as JavaScript) within your HTML
document.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML script Tag</title>
</head>
286
HTML
<body>
<script type="text/JavaScript">
</script>
</body>
</html>
For more detail on <script> tag please check HTML Scripts chapter.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <script> tag also supports the following additional attributes:
287
HTML
application/JavaScript
text/vbscript
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <section> tag specifies a section in a document.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Section Tag</title>
</head>
<body>
<section>
<h1>Java</h1>
<h3>Inheritance</h3>
<p>Inheritance defines the relationship between superclass and subclass.</p>
</section>
</body>
</html>
288
HTML
Java
Inheritance
Inheritance defines the relationship between superclass and subclass.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <select> tag is used within a form for defining a select list.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML select Tag</title>
</head>
<body>
<form action="/cgi-bin/dropdown.cgi" method="post">
<select name="dropdown">
<option value="Data Structures" selected>Data Structures</option>
<option value="Data Mining">Data Mining</option>
</select>
<input type="submit" value="Submit" />
289
HTML
</form>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <select> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
290
HTML
Description
The HTML <spacer> tag specifies a whitespace.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML spacer Tag</title>
</head>
<body>
Create some space <spacer type="block" width="50" /> here.
</body>
</html>
<spacer> tag is available in Netscape 4 and higher version only. This will produce the
following result:
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <object> tag also supports the following additional attributes:
vertical
The type attribute is used to specify whether the spacer
type horizontal
will be horizontal, vertical, or block.
block
291
HTML
left The align tag is used to specify the alignment of the block
align right of white space. Valid alignments are left, right, and
center center.
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
This tag is available in Netscape 4 and higher version only.
No No No No No No
Description
The HTML <small> tag makes the font size one size smaller.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML small Tag</title>
</head>
292
HTML
<body>
<h2>www.tutorialspoint.com</h2>
<p><small> Simply Easy Learning</small></p>
</body>
</html>
www.tutorialspoint.com
Simply Easy Learning
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <source> tag is used for defining multimedia resources for <audio> and
<video> elements. The browser can make a choice from the source based on media type
and codec support.
<!Doctype html>
<html>
<head>
<title>HTML source Tag</title>
</head>
<body>
<audio controls>
<source src = "yourfile.mp3">
293
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <source> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Yes (4.0) Yes (3.5) Yes (9) Yes (10.5) Yes (4.0) No
Description
The HTML <span> tag is used for grouping and applying styles to inline elements.
294
HTML
There is a difference between the span tag and the div tag. The span tag is used with
inline elements whilst the div tag is used with block-level content.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML span Tag</title>
</head>
<body>
<p>This is a paragraph <span style="color:#FF0000;">
This is a paragraph</span>
This is a paragraph</p>
<p><span style="color:#8866ff;">
This is another paragraph</span></p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
295
HTML
The HTML <strike> tag specifies strikethrough text. This tag is deprecated now, <del>
should be used instead.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML strike Tag</title>
</head>
<body>
The HTML strike tag renders a <strike>strike</strike> through the middle of the
text .
</body>
</html>
The HTML strike tag renders a strike through the middle of the text.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <strong> tag is used for emphasizing an important text.
<!Doctype html>
<html>
<head>
296
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Function
The HTML <style> tag is used for declaring style sheets within the head of your HTML
document.
Example
<head>
<style type="text/css">
h1 { color:#F1F1F1 }
</style>
</head>
297
HTML
For more detail on <style> tag please check HTML Styles chapter.
Online Practice
To Become more comfortable - Do Online Practice
Attributes
Attribute Value Description
type text/css Specifies the style sheet language as a content-type (MIME type).
media screen Specifies the device the document will be displayed on.
tty
tv
projection
handheld
print
braille
aural
all
Standard Attributes
Attribute Description
Description
The HTML <sub> tag is used for defining subscript text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML sub Tag</title>
</head>
298
HTML
<body>
Value of y<sub>1</sub> - y<sub>3</sub> = 17
</body>
</html>
Value of y1 - y3 = 17
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <summary> tag specifies a summary, caption or legend for a given details.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Summary Tag</title>
</head>
<body>
<details>
<summary>Some details</summary>
<p>Provide more info about the details here.</p>
</details>
</section>
299
HTML
</body>
</html>
Some details
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <sup> tag is used for defining superscript text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML sup Tag</title>
</head>
<body>
Value of 5<sup>2</sup> + 3<sup>3</sup> = 52
</body>
</html>
300
HTML
Value of 52 + 33 = 52
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <table> tag is used for defining a table. The table tag contains other tags that
define the structure of the table.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML table Tag</title>
</head>
<body>
<table border="1">
<tr>
<th>Team</th>
<th>Ranking</th>
</tr>
<tr>
<td>India</td>
<td>1</td>
</tr>
<tr>
301
HTML
<td>South Africa</td>
<td>2</td>
</tr>
<tr>
<td>Australia</td>
<td>3</td>
</tr>
</table>
</body>
</html>
Team Ranking
India 1
South Africa 2
Australia 3
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <table> tag also supports the following additional attributes:
right
left
align center Deprecated-Visual alignment.
justify
char
rgb(x,x,x)
Deprecated-Specifies the background color of the
bgcolor #hexcode
table.
colorname
302
HTML
void
above
below
Deprecated-Used in conjunction with the border
hsides
attribute, specifies which side of the frame that
frame lhs
makes up the border surrounding the table is
rhs
displayed.
vsides
box
border
none
groups Deprecated-Used in conjunction with the border
rules rows attribute, specifies which rules appear between the
cols cells of the table.
all
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
303
HTML
The HTML <tbody> tag is used in adding a body to a table. The tbody tag is used in
conjunction with the thead tag and the tfoot tag in determining each part of the table
(header, footer, body).
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML tbody Tag</title>
</head>
<body>
<table style="width:100%" border="1">
<thead>
<tr>
<td colspan="4">This is the head of the table</td>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4">This is the foot of the table</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
304
HTML
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
</table>
</body>
</html>
...more rows here containing four cells... ...more rows here containing four cells...
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <tbody> tag also supports the following additional attributes:
right
left
align center Deprecated-Visual alignment.
justify
char
305
HTML
top
middle
valign Deprecated-Vertical alignment.
bottom
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <td> tag is used for specifying a cell or table data within a table.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML td Tag</title>
</head>
<body>
<table border="1">
<tr>
<th>Subject</th>
<th>Topic</th>
306
HTML
</tr>
<tr>
<td>Java</td>
<td>Threading</td>
</tr>
<tr>
<td>C++</td>
<td>Virtual Functions</td>
</tr>
<tr>
<td>Linux</td>
<td>File Systems</td>
</tr>
</table>
</body>
</html>
Subject Topic
Java Threading
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <td> tag also supports the following additional attributes:
right
align left Deprecated-Visual alignment.
center
307
HTML
justify
char
rgb(x,x,x)
Deprecated-Specifies the background color of the
bgcolor #hexcode
table cell.
colorname
col
colgroup Deprecated-This attribute is used on header cells
scope and specifies the cells that will use this header's
row information.
rowgroup
308
HTML
top
middle
valign Deprecated-Vertical alignment.
bottom
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <textarea> tag is used within a form to declare a textarea element - a control
that allows the user to input text over multiple rows.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML textarea Tag</title>
</head>
<body>
<form action="/cgi-bin/hello_get.cgi" method="get">
Fill the Detail: <br />
<textarea rows="5" cols="50" name="description">
Enter your name
</textarea>
<input type="submit" value="submit" />
</form>
</body>
309
HTML
</html>
submit
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <textarea> tag also supports the following additional attributes:
310
HTML
hard
wrap Specifies the text to be wrapped in textarea.
soft
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <tfoot> tag is used in adding a footer to a table. The tfoot tag is used in
conjunction with the tbody tag and the thead tag in determining each part of the table
(header, footer, body).
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML tfoot Tag</title>
</head>
<body>
<table style="width:100%" border="1">
<thead>
<tr>
<td colspan="4">This is the head of the table</td>
</tr>
311
HTML
</thead>
<tfoot>
<tr>
<td colspan="4">This is the foot of the table</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
</table>
</body>
</html>
...more rows here containing four cells... ...more rows here containing four cells...
312
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <tfoot> tag also supports the following additional attributes:
right
left
align center Deprecated-Visual alignment.
justify
char
top
middle
valign Deprecated-Vertical alignment.
bottom
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
313
HTML
Description
The HTML <th> tag is used for specifying a header cell or table header within a table.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML th Tag</title>
</head>
<body>
<table border="1">
<tr>
<th>ID</th>
<th>Product Details</th>
</tr>
<tr>
<td>00L1</td>
<td>i3, 500gb laptop</td>
</tr>
</table>
</body>
</html>
Product
ID
Details
i3, 500gb
00L1
laptop
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <th> tag also supports the following additional attributes:
314
HTML
right
left
align center Deprecated-Content alignment in header cell.
justify
char
rgb(x,x,x)
Deprecated-Specifies the background color of the
bgcolor #hexcode
header cell.
colorname
col
colgroup This attribute is used on header cells and specifies
scope
row the cells that will use this header's information.
rowgroup
315
HTML
top
middle
valign Deprecated-Vertical alignment.
bottom
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <thead> tag is used in adding a header to a table. The thead tag is used in
conjunction with the tbody tag and the tfoot tag in determining each part of the table
(header, footer, body).
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML thead Tag</title>
</head>
<body>
<table style="width:100%" border="1">
<thead>
<tr>
<td colspan="4">This is the head of the table</td>
</tr>
</thead>
<tfoot>
<tr>
316
HTML
...more rows here containing four cells... ...more rows here containing four cells...
317
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <thead> tag also supports the following additional attributes:
right
left
align center Deprecated-Visual alignment.
justify
char
top
middle
valign Deprecated-Vertical alignment.
bottom
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
318
HTML
Description
The HTML <time> tag is used for displaying the human readable date and time.
<!Doctype html>
<html>
<head>
<title>HTML time Tag</title>
</head>
<body>
<p>The time is <time>12:51 pm</time></p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <time> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Yes (6.0) Yes (4.0) Yes (9.0) Yes (11.1) Yes (5.0) No
319
HTML
Description
The HTML <title> tag is used for indicating the title of the HTML document. The body title
is placed between the and the tags.
Example
<!DOCTYPE html>
<html>
<head>
<title>Title comes here</title>
</head>
<body>
<p>title tag is used for indicating the title of the HTML document. HTML
document title is visible via browsers title bar.</p>
</body>
</html>
title tag is used for indicating the title of the HTML document. HTML document
title is visible via browsers title bar.
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <tr> tag is used for specifying a table row within a table.
Example
320
HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML tr Tag</title>
</head>
<body>
<table border="1">
<tr>
<th>Cricketers</th>
<th>Ranking</th>
</tr>
<tr>
<td>M.S Dhoni</td>
<td>1</td>
</tr>
<tr>
<td>Yuvraj Singh</td>
<td>2</td>
</tr>
<tr>
<td>Virat Kohli</td>
<td>3</td>
</tr>
</table>
</body>
</html>
Cricketers Ranking
M.S Dhoni 1
Yuvraj Singh 2
Virat Kohli 3
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
321
HTML
Specific Attributes
The HTML <tr> tag also supports the following additional attributes:
right
left
align center Deprecated-Visual alignment.
justify
char
rgb(x,x,x)
Deprecated-Specifies the background color of the
bgcolor #hexcode
table cell.
colorname
top
middle
valign Deprecated-Vertical alignment.
bottom
baseline
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
322
HTML
The HTML <track> tag is used for defining captions, subtitles, and other content for
<audio> and <video> tags
<!Doctype html>
<html>
<head>
<title>HTML source Tag</title>
</head>
<body>
<audio controls>
<source src = "yourfile.mp3">
<track src = "subtitles.vtt" kind="subtitles" srclang="en" label="English">
<p>:The browser doesnot support the file</p>
</audio>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <track> tag also supports the following additional attributes:
captions
chapters
metadata
subtitles
323
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <tt> tag specifies teletype text. This is not supported in HTML5.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML tt Tag</title>
</head>
<body>
<p>tutorialspoint</p>
<tt>learning website</tt>
</body>
</html>
tutorialspoint
learning website
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
324
HTML
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <u> tag is used to underline a text. This tag is deprecated now and should not
be used.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML u Tag</title>
</head>
<body>
<u>tutorialspoint.com</u> was started by <b>Mr. Mohammad Mohtashim,</b> in the
year 2006.
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
325
HTML
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <ul> tag is used for creating an unordered list.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML ul Tag</title>
</head>
<body>
<p>Sports Club Games</p>
<ul>
<li>Cricket</li>
<li>Football</li>
<li>Hockey</li>
<li>Badminton</li>
<li>Squash</li>
</ul>
</body>
</html>
Cricket
Football
326
HTML
Hockey
Badminton
Squash
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <ul> tag also supports the following additional attributes:
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <var> tag is used to format text in a document. It can include a variable in a
mathematical expression.
Example
<!DOCTYPE html>
<html>
327
HTML
<head>
<title>HTML var Tag</title>
</head>
<body>
<p> The equations: <var>3x</var> - <var>7z</var> = <var>8y</var> + 2 and
<var>x</var> + <var>3z</var> = <var>4y</var> + 9 </p>
</body>
</html>
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <video> tag is used to embed video into your web page, it has several video
sources.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML video Tag</title>
</head>
<body>
<p>Run your first program using an Online Compiler (compileonline.com)</p><br
/>
328
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Specific Attributes
The HTML <video> tag also supports the following additional attributes:
329
HTML
loop loop Specifies that the video will start again every time
after finish
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Mobile
Description
The HTML <wbr> tag defines a potential line break point if needed. This stands for Word
Break Opportunity.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML wbr Tag</title>
</head>
<body>
330
HTML
<wbr />
the browser to extend the document window beyond the size of the viewing pane
and the poor user must scroll right
<wbr />
</body>
</html>
The browser to extend the document window beyond the size of the viewing pane and the poor
user must scroll right
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Event Attributes
This tag supports all the event attributes described in - HTML Events Reference
Browser Support
Chrome Firefox IE Opera Safari Android
Description
The HTML <xmp> tag specifies preformatted text.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML xmp Tag</title>
</head>
<body>
<xmp>HTML tags include <b> for bold text, <i> for italic text.</xmp>
</body>
</html>
331
HTML
Global Attributes
This tag supports all the global attributes described in - HTML Attribute Reference
Browser Support
Chrome Firefox IE Opera Safari Android
332
29. HTML ATTRIBUTE REFERENCE HTML
There are few HTML attributes which are standard and associated to all the HTML tags.
These attributes are listed here with a brief description.
Global Attributes
Not valid in base, head, html, meta, param, script, style, and title elements.
data-* Yes Used to store custom data associated with the element.
333
HTML
Language Attributes
The lang attribute indicates the language being used for the enclosed content. The
language is identified using the ISO standard language abbreviations, such
as fr for French,en for English, and so on.
Not valid in base, br, frame, frameset, hr, iframe, param, and script elements.
334
30. HTML EVENTS REFERENCE HTML
When users visit your website, they do things like click various links, bring mouse over
text and images etc. These are examples of what we call events in JavaScript and VBScript
terminologies.
We can write our event handlers using JavaScript or VBScript and can specify some actions
to be taken against these events. Though these are the events but they will be specified
as attributes for the HTML tags.
The HTML 4.01 specification had defined 19 events but later HTML-5 has added many
other events which we have listed down here:
335
HTML
Form Events
Following tags have been introduced in older versions of HTML but all the tags marked
with are part of HTML-5.
336
HTML
Keyboard Events
Events HTML-5 Description
Mouse Events
Following tags have been introduced in older versions of HTML but all the tags marked
with are part of HTML-5.
337
HTML
Media Events
Following tags have been introduced in older versions of HTML but all the tags marked
with are part of HTML-5.
oncanplay Triggers when a media can start play, but might has
to stop for buffering
338
HTML
339
HTML
340
31. HTML FONTS REFERENCE HTML
Fonts are specific to platform. You will have different look and feel of a web page on
different machines running different operating systems like Windows, Linux or Mac iOS.
Here we are giving a list of fonts which are available in various operating systems.
HTML <font> tag is deprecated in version 4.0 onwards and now all fonts are set by using
CSS. Here is the simple syntax of setting font of a body of web page.
or
Example
<!DOCTYPE html>
<html>
<head>
<title>Font Setting Using CSS</title>
</head>
<body>
</body>
</html>
341
HTML
Courier New Bold Courier New Italic Courier New Bold Italic
You can check example fonts here: Microsoft Fonts Examples. You can also have more
information on Microsoft Fonts at http://www.microsoft.com/typography/fonts.
342
HTML
Gadget Sand
343
HTML
Utopia
Following tables list down all the 7-BIT ASCII codes and their equivalent HTML Entity
Codes.
If you want to see equivalent HEX, OCT and extended set of ASCII codes then check next
chapter.
space  
344
HTML
* asterisk *
, comma ,
- hyphen -
. period .
/ slash /
0 digit 0 0
1 digit 1 1
2 digit 2 2
3 digit 3 3
4 digit 4 4
5 digit 5 5
6 digit 6 6
7 digit 7 7
8 digit 8 8
9 digit 9 9
: colon :
; semicolon ;
= equals-to =
345
HTML
@ at sign @
A uppercase A A
B uppercase B B
C uppercase C C
D uppercase D D
E uppercase E E
F uppercase F F
G uppercase G G
H uppercase H H
I uppercase I I
J uppercase J J
K uppercase K K
L uppercase L L
M uppercase M M
N uppercase N N
O uppercase O O
P uppercase P P
Q uppercase Q Q
R uppercase R R
S uppercase S S
T uppercase T T
346
HTML
U uppercase U U
V uppercase V V
W uppercase W W
X uppercase X X
Y uppercase Y Y
Z uppercase Z Z
\ backslash \
^ caret ^
_ underscore _
a lowercase a a
b lowercase b b
c lowercase c c
d lowercase d d
e lowercase e e
f lowercase f f
g lowercase g g
h lowercase h h
i lowercase i i
j lowercase j j
k lowercase k k
347
HTML
l lowercase l l
m lowercase m m
n lowercase n n
o lowercase o o
p lowercase p p
q lowercase q q
r lowercase r r
s lowercase s s
t lowercase t t
u lowercase u u
v lowercase v v
w lowercase w w
x lowercase x x
y lowercase y y
z lowercase z z
~ tilde ~
348
HTML
BS backspace 
SI shift in 
349
HTML
350
32. ASCII TABLE LOOKUP HTML
ASCII stands for American Standard Code for Information Interchange. There are 128
standard ASCII codes, each of which can be represented by a 7-digit binary number:
0000000 through 1111111.
Extended ASCII adds an additional 128 characters that vary between computers, programs
and fonts.
351
HTML
352
HTML
353
HTML
354
HTML
355
HTML
357
HTML
358
HTML
359
HTML
197 305 C5 11000101 Å Latin capital letter A with ring above
360
HTML
229 345 E5 11100101 å Latin small letter a with ring above
361
HTML
362
33. HTML COLOR NAMES HTML
The following table shows the 16 color names that were introduced in HTML 3.2:
There are other colors which are not part of HTML or XHTML but they are supported by
most of the versions of major browsers.
363
HTML
364
HTML
365
HTML
366
HTML
367
HTML
368
HTML
369
34. HTML ENTITIES HTML
Some characters are reserved in HTML and they have special meaning when used in HTML
document. For example, you cannot use the greater than and less than signs or angle
brackets within your HTML text because the browser will treat them differently and will try
to draw a meaning related to HTML tag.
HTML processors must support following five special characters listed in the table that
follows.
Example
If you want to write <div id="character"> as a code, then you will have to write as follows:
<!DOCTYPE html>
<html>
<head>
<title>HTML Entities</title>
</head>
<body>
<div id="character">
</body>
</html>
<div id="character">
There is also a long list of special characters in HTML 4.0. In order for these to appear in
your document, you can use either the numerical codes or the entity names. For example,
to insert a copyright symbol you can use either of the following:
370
HTML
© 2007
or
© 2007
371
HTML
372
HTML
373
HTML
374
HTML
375
HTML
376
35. MIME MEDIA TYPES HTML
MIME (Multipurpose Internet Mail Extension) media types were originally devised so that
e-mails could include information other than plain text. MIME media types indicate the
following things:
How different parts of a message, such as text and attachments, are combined into
the message.
The way different items are encoded for transmission so that even software that
was designed to work only with ASCII text can process the message.
Now MIME types are not just for use with e-mail; they have been adopted by Web servers
as a way to tell Web browsers what type of material was being sent to them so that they
can cope with that kind of messages correctly.
A main type
A sub-type
The main type is separated from the subtype by a forward slash character. For example,
text/html for HTML.
text
image
multipart
audio
video
message
model
application
377
HTML
x-portable-pixmap x-xbitmap
378
HTML
AMR L8 vnd.cisco.nse
CN L24 vnd.digital-winds
379
HTML
GSM VDVI
DV mpeg4-generic vnd.sealed.mpeg1
H261 nv vnd.sealed.mpeg4
380
HTML
MP2P vnd.motorola.video
MP2T vnd.motorola.videop
external-body rfc822
activemessage andrew-inset
applefile atomicmail
batch-SMTP beep+xml
cals-1840 cnrp+xml
381
HTML
commonground cpl+xml
cybercash dca-rft
dec-dx dicom
dvcs EDI-Consent
EDIFACT eshop
font-tdpfr http
hyperstudio iges
index index.cmd
index.obj index.response
index.vnd iotp
ipp isup
mac-binhex40 macwriteii
marc mathematica
mpeg4-generic msword
news-message-id news-transmission
ocsp-request ocsp-response
octet-stream oda
ogg parityfec
382
HTML
pdf pgp-encrypted
pgp-keys pgp-signature
pidf+xml pkcs10
pkcs7-mime pkcs7-signature
pkix-cert pkixcmp
pkix-crl pkix-pkipath
postscript prs.alvestrand.titrax-sheet
prs.cww prs.nprend
prs.plucker qsig
reginfo+xml remote-printing
riscos rtf
sdp set-payment
set-payment-initiation set-registration
set-registration-initiation sgml
sgml-open-catalog sieve
slate timestamp-query
timestamp-reply tve-trigger
vemmi vnd.3gpp.pic-bw-large
383
HTML
vnd.3gpp.pic-bw-small vnd.3gpp.pic-bw-var
vnd.3gpp.sms vnd.3M.Post-it-Notes
vnd.accpac.simply.aso vnd.accpac.simply.imp
vnd.acucobol vnd.acucorp
vnd.adobe.xfdf vnd.aether.imp
vnd.amiga.ami vnd.anser-web-certificate-issue-initiation
vnd.audiograph vnd.anser-web-funds-transfer-initiation
vnd.blueice.multipass vnd.bmi
vnd.businessobjects vnd.canon-cpdl
vnd.canon-lips vnd.cinderella
vnd.claymore vnd.commerce-battelle
vnd.commonspace vnd.cosmocaller
vnd.contact.cmsg vnd.criticaltools.wbs+xml
vnd.ctc-posml vnd.cups-postscript
vnd.cups-raster vnd.cups-raw
vnd.curl vnd.cybank
vnd.data-vision.rdz vnd.dna
vnd.dpgraph vnd.dreamfactory
384
HTML
vnd.dxr vnd.ecdis-update
vnd.ecowin.chart vnd.ecowin.filerequest
vnd.ecowin.fileupdate vnd.ecowin.series
vnd.ecowin.seriesrequest vnd.ecowin.seriesupdate
vnd.enliven vnd.epson.esf
vnd.epson.msf vnd.epson.quickanime
vnd.epson.salt vnd.epson.ssf
vnd.ericsson.quickcall vnd.eudora.data
vnd.fdf vnd.ffsns
vnd.fints vnd.FloGraphIt
vnd.framemaker vnd.fsc.weblaunch
vnd.fujitsu.oasys vnd.fujitsu.oasys2
vnd.fujitsu.oasys3 vnd.fujitsu.oasysgp
vnd.fujitsu.oasysprs vnd.fujixerox.ddd
vnd.fujixerox.docuworks vnd.fujixerox.docuworks.binder
vnd.fut-misnet vnd.genomatix.tuxedo
vnd.grafeq vnd.groove-account
vnd.groove-help vnd.groove-identity-message
385
HTML
vnd.groove-injector vnd.groove-tool-message
vnd.groove-tool-template vnd.groove-vcard
vnd.hbci vnd.hhe.lesson-player
vnd.hp-HPGL vnd.hp-hpid
vnd.hp-hps vnd.hp-PCL
vnd.hp-PCLXL vnd.httphone
vnd.hzn-3d-crossword vnd.ibm.afplinedata
vnd.ibm.electronic-media vnd.ibm.MiniPay
vnd.ibm.modcap vnd.ibm.rights-management
vnd.ibm.secure-container vnd.informix-visionary
vnd.intercon.formnet vnd.intertrust.digibox
vnd.intertrust.nncp vnd.japannet-registration-wakeup
vnd.intu.qfx vnd.ipunplugged.rcprofile
vnd.irepository.package+xml vnd.is-xpr
vnd.japannet-directory-service vnd.japannet-jpnstore-wakeup
vnd.japannet-payment-wakeup vnd.japannet-registration
vnd.intu.qbo vnd.japannet-setstore-wakeup
vnd.japannet-verification vnd.japannet-verification-wakeup
386
HTML
vnd.jisp vnd.kde.karbon
vnd.kde.kchart vnd.kde.kformula
vnd.kde.kivio vnd.kde.kontour
vnd.kde.kpresenter vnd.kde.kspread
vnd.kde.kword vnd.kenameaapp
vnd.kidspiration vnd.koan
vnd.liberty-request+xml vnd.llamagraphics.life-balance.desktop
vnd.lotus-1-2-3 vnd.llamagraphics.life-balance.exchange+xml
vnd.lotus-approach vnd.lotus-freelance
vnd.lotus-notes vnd.lotus-organizer
vnd.lotus-screencam vnd.lotus-wordpro
vnd.mcd vnd.mediastation.cdkey
vnd.meridian-slingshot vnd.micrografx.flo
vnd.micrografx.igx vnd.mif
vnd.minisoft-hp3000-save vnd.mitsubishi.misty-guard.trustweb
vnd.Mobius.DAF vnd.Mobius.DIS
vnd.Mobius.MBK vnd.Mobius.MQY
vnd.Mobius.MSL vnd.Mobius.PLC
387
HTML
vnd.Mobius.TXF vnd.mophun.application
vnd.mophun.certificate vnd.motorola.flexsuite
vnd.motorola.flexsuite.adsi vnd.motorola.flexsuite.fis
vnd.motorola.flexsuite.gotap vnd.motorola.flexsuite.kmr
vnd.motorola.flexsuite.ttc vnd.motorola.flexsuite.wem
vnd.mozilla.xul+xml vnd.ms-artgalry
vnd.ms-asf vnd.mseq
vnd.ms-excel vnd.msign
vnd.ms-lrm vnd.ms-powerpoint
vnd.ms-project vnd.ms-tnef
vnd.ms-works vnd.ms-wpl
vnd.musician vnd.music-niff
vnd.nervana vnd.netfpx
vnd.noblenet-directory vnd.noblenet-sealer
vnd.noblenet-web vnd.novadigm.EDM
vnd.novadigm.EDX vnd.novadigm.EXT
vnd.obn vnd.osa.netdeploy
vnd.palm vnd.paos.xml
388
HTML
vnd.pg.format vnd.picsel
vnd.pg.osasli vnd.powerbuilder6
vnd.powerbuilder6-s vnd.powerbuilder7
vnd.powerbuilder75 vnd.powerbuilder75-s
vnd.powerbuilder7-s vnd.previewsystems.box
vnd.publishare-delta-tree vnd.pvi.ptid1
vnd.Quark.QuarkXPress vnd.rapid
vnd.s3sms vnd.sealed.doc
vnd.sealed.eml vnd.sealed.mht
vnd.sealed.net vnd.sealed.ppt
vnd.sealed.xls vnd.sealedmedia.softseal.html
vnd.sealedmedia.softseal.pdf vnd.shana.informed.interchange
vnd.shana.informed.formdata vnd.shana.informed.formtemplate
vnd.seemail vnd.shana.informed.package
vnd.smaf vnd.sss-cod
vnd.sss-dtf vnd.sss-ntf
vnd.street-stream vnd.svd
389
HTML
vnd.swiftview-ics vnd.triscape.mxs
vnd.trueapp vnd.truedoc
vnd.ufdl vnd.uiq.theme
vnd.uplanet.alert vnd.uplanet.alert-wbxml
vnd.uplanet.bearer-choice vnd.uplanet.bearer-choice-wbxml
vnd.uplanet.cacheop vnd.uplanet.cacheop-wbxml
vnd.uplanet.channel vnd.uplanet.channel-wbxml
vnd.uplanet.list vnd.uplanet.listcmd
vnd.uplanet.listcmd-wbxml vnd.uplanet.list-wbxml
vnd.uplanet.signal vnd.vcx
vnd.vectorworks vnd.vidsoft.vidconference
vnd.visio vnd.visionary
vnd.vividence.scriptfile vnd.vsf
vnd.wap.sic vnd.wap.slc
vnd.wap.wbxml vnd.wap.wmlc
vnd.wap.wmlscriptc vnd.webturbo
vnd.wqd vnd.wrq-hp3000-labelled
vnd.wt.stf vnd.wv.csp+xml
390
HTML
vnd.wv.csp+wbxml vnd.wv.ssp+xml
vnd.xara vnd.xfdl
vnd.yamaha.hv-dic vnd.yamaha.hv-script
vnd.yamaha.hv-voice vnd.yamaha.smaf-audio
vnd.yamaha.smaf-phrase vnd.yellowriver-custom-menu
watcherinfo+xml whoispp-query
whoispp-response wita
wordperfect5.1 x400-bp
x-debian-package x-java
x-javascript x-gzip
x-msaccess x-msexcel
x-mspowerpoint x-rpm
x-zip xhtml+xml
xml xml-dtd
xml-external-parsed-entity zip
For example, the text main type contains types of plain text files, such as:
MIME types are officially supposed to be assigned and listed by the Internet Assigned
Numbers Authority (IANA).
391
HTML
Many of the popular MIME types in this list (all those begin with "x-") are not assigned by
the IANA and do not have official status. You can see the list of official MIME types at
http://www.iana.org/assignments/media-types/. Those preceded with .vnd are vendor-
specific.
When specifying the MIME type of a content-type field you can also indicate the character
set for the text being used. If you do not specify a character set, the default is US-ASCII.
For example:
content-type:text/plain; charset=iso-8859-1
392
36. HTML URL ENCODING HTML
URL encoding is the practice of translating unprintable characters or characters with special
meaning within URLs to a representation that is unambiguous and universally accepted by
web browsers and servers. These characters include:
Non-ASCII control characters: These are characters beyond the ASCII character
set of 128 characters. This range is part of the ISO-Latin character set and includes
the entire "top half" of the ISO-Latin set 80-FF hex (128-255 decimal). A complete
encoding table is given below.
Reserved characters: These are special characters such as the dollar sign,
ampersand, plus, common, forward slash, colon, semi-colon, equals sign, question
mark, and "at" symbol. All of these can have different meanings inside a URL so
need to be encoded. A complete encoding table is given below.
Unsafe characters: These are space, quotation marks, less than symbol, greater
than symbol, pound character, percent character, Left Curly Brace, Right Curly
Brace, Pipe, Backslash, Caret, Tilde, Left Square Bracket, Right Square Bracket,
Grave Accent. These character present the possibility of being misunderstood
within URLs for various reasons. These characters should also always be encoded.
A complete encoding table is given below.
The encoding notation replaces the desired character with three characters: a percent sign
and two hexadecimal digits that correspond to the position of the character in the ASCII
character set.
Example
One of the most common special characters is a white space. You can't type a space in a
URL directly. A space position in the character set is 20 hexadecimals. So you can use
%20 in place of a space when passing your request to the server.
http://www.example.com/new%20pricing.htm
This URL actually retrieves a document named "new pricing.htm" from the
www.example.com
393
HTML
0 00 %00
1 01 %01
2 02 %02
3 03 %03
4 04 %04
5 05 %05
6 06 %06
7 07 %07
8 08 backspace %08
9 09 tab %09
10 0a linefeed %0a
11 0b %0b
12 0c %0c
14 0e %0e
15 0f %0f
16 10 %10
17 11 %11
18 12 %12
19 13 %13
394
HTML
20 14 %14
21 15 %15
22 16 %16
23 17 %17
24 18 %18
25 19 %19
26 1a %1a
27 1b %1b
28 1c %1c
29 1d %1d
30 1e %1e
31 1f %1f
127 7f %7f
128 80 %80
129 81 %81
130 82 %82
131 83 %83
132 84 %84
395
HTML
133 85 %85
134 86 %86
135 87 %87
136 88 %88
137 89 %89
138 8a %8a
139 8b %8b
140 8c %8c
141 8d %8d
142 8e %8e
143 8f %8f
144 90 %90
145 91 %91
146 92 %92
147 93 %93
148 94 %94
149 95 %95
150 96 %96
396
HTML
151 97 %97
152 98 %98
153 99 %99
154 9a %9a
155 9b %9b
156 9c %9c
157 9d %9d
158 9e %9e
159 9f %9f
160 a0 %a0
161 a1 %a1
162 a2 %a2
163 a3 %a3
164 a4 %a4
165 a5 %a5
166 a6 %a6
167 a7 %a7
168 a8 %a8
397
HTML
169 a9 %a9
170 aa %aa
171 ab %ab
172 ac %ac
173 ad %ad
174 ae %ae
175 af %af
176 b0 %b0
177 b1 %b1
178 b2 %b2
179 b3 %b3
180 b4 %b4
181 b5 %b5
182 b6 %b6
183 b7 %b7
184 b8 %b8
185 b9 %b9
186 ba %ba
398
HTML
187 bb %bb
188 bc %bc
189 bd %bd
190 be %be
191 bf %bf
192 c0 %c0
193 c1 %c1
194 c2 %c2
195 c3 %c3
196 c4 %c4
197 c5 %c5
198 c6 %v6
199 c7 %c7
200 c8 %c8
201 c9 %c9
202 ca %ca
203 cb %cb
204 cc %cc
399
HTML
205 cd %cd
206 ce %ce
207 cf %cf
208 d0 %d0
209 d1 %d1
210 d2 %d2
211 d3 %d3
212 d4 %d4
213 d5 %d5
214 d6 %d6
215 d7 %d7
216 d8 %d8
217 d9 %d9
218 da %da
219 db %db
220 dc %dc
221 dd %dd
222 de %de
400
HTML
223 df %df
224 e0 %e0
225 e1 %e1
226 e2 %e2
227 e3 %e3
228 e4 %e4
229 e5 %e5
230 e6 %e6
231 e7 %e7
232 e8 %e8
233 e9 %e9
234 ea %ea
235 eb %eb
236 ec %ec
237 ed %ed
238 ee %ee
239 ef %ef
240 f0 %f0
401
HTML
241 f1 %f1
242 f2 %f2
243 f3 %f3
244 f4 %f4
245 f5 %f5
246 f6 %f6
247 f7 %f7
248 f8 %f8
249 f9 %f9
250 fa %fa
251 fb %fb
252 fc %fc
253 fd %fd
254 fe %fe
255 ff %ff
36 24 $ %24
402
HTML
38 26 & %26
43 2b + %2b
44 2c , %2c
47 2f / %2f
58 3a : %3a
59 3b ; %3b
61 3d = %3d
63 3f ? %3f
64 40 @ %40
32 20 space %20
34 22 " %22
60 3c < %3c
62 3e > %3e
35 23 # %23
37 25 % %25
123 7b { %7b
125 7d } %7d
124 7c | %7c
92 5c \ %5c
94 5e ^ %5e
403
HTML
126 7e ~ %7e
91 5b [ %5b
93 5d ] %5d
96 60 ` %60
404
37. LANGUAGE ISO CODES HTML
The following is a draft list of language code correspondences between ISO codes,
Microsoft codes, and Macintosh codes. Source of this information is Unicode Consortium.
Abkhazian ab
Afar aa
Aymara ay
Bashkir ba
Bengali
bn LANG_BENGALI 0x45
(Bangla)
Bhutani dz
Bihari bh
Bislama bi
405
HTML
Breton br
Byelorussian
be LANG_BELARUSIAN 0x23
(Belarusian)
Chewa
Corsican co
Esperanto eo
406
HTML
Fiji fj
0x13
Flemish LANG_DUTCH (SUBLANG_DUTCH_BELGIAN)
(0x0813)
Gaelic 0x3c
gd (no constant defined)
(Scottish) (0x043c)
Gaelic (Manx) gv
Greenlandic kl
he,
Hebrew LANG_HEBREW 0x0d
iw*
407
HTML
Interlingua ia
Interlingue ie
Inupiak ik
0x3c
Irish ga (no constant defined)
(0x083c)
Javanese jv
Kinyarwanda
rw
(Ruanda)
Kirundi (Rundi) rn
Kurdish ku
408
HTML
Latvian
lv LANG_LATVIAN 0x26
(Lettish)
Limburgish (
li
Limburger)
Lingala ln
Malagasy mg
LANG_MANIPURI 0x58
Maori mi
Moldavian mo
Nauru na
Occitan oc
Oromo (Afan,
om (no constant defined) 0x72
Galla)
409
HTML
Quechua qu
Rhaeto-
rm (no constant defined) 0x17
Romance
Samoan sm
Sangro sg
0x1a
LANG_SERBIAN (SUBLANG_SERBIAN_LATIN or
Serbian sr (0x081a or
SUBLANG_SERBIAN_CYRILLIC)
0x0c1a)
Serbo-Croatian sh
Sesotho st
Setswana tn
Shona sn
Siswati ss
410
HTML
Sundanese su
Swahili
sw LANG_SWAHILI 0x41
(Kiswahili)
Tonga to
Twi tw
Uighur ug
411
HTML
Volap?k vo
Wolof wo
Abkhazian ab
Afar aa
Albanian sq langAlbanian 36
Amharic am langAmharic 85
Arabic ar langArabic 12
Armenian hy langArmenian 51
Assamese as langAssamese 68
langAzerbaijani(Cyrllic), 49(C),
Azerbaijani az
langAzerbaijanAr(Arabic) 50(A)
412
HTML
Bashkir ba
Bihari bh
Bislama bi
Bulgarian bg langBulgarian 44
Burmese my langBurmese 77
Byelorussian
be langByelorussian 46
(Belarusian)
Cambodian km langKhmer 78
Cherokee
Chewa langChewa 92
Chinese
zh langTradChinese 19
(Traditional)
Corsican co
Croatian hr langCroatian 18
Czech cs langCzech 38
Danish da langDanish 7
Divehi
Dutch nl langDutch 4
413
HTML
Edo
English en langEnglish 0
Esperanto eo langEsperanto 94
Estonian et langEstonian 27
Faeroese fo langFaeroese 30
Fiji fj
Finnish fi langFinnish 13
Flemish langFlemish 34
French fr langFrench 1
Frisian fy
Fulfulde
Georgian ka langGeorgian 52
German de langGerman 2
Greenlandic kl
Gujarati gu langGujarati 69
Hausa ha
Hawaiian
414
HTML
Hindi hi langHindi 21
Hungarian hu langHungarian 26
Ibibio
Icelandic is langIcelandic 15
Igbo
Interlingua ia
Interlingue ie
Inupiak ik
Italian it langItalian 3
Japanese ja langJapanese 11
Kannada kn langKannada 73
Kanuri
Kashmiri ks langKashmiri 61
Kazakh kk langKazakh 48
Kinyarwanda
rw langKiryarwanda (langRuanda) 90
(Ruanda)
Kirghiz ky langKirghiz 54
415
HTML
Konkani
Korean ko langKorean 23
Kurdish ku langKurdish 60
Laothian lo langLao 79
Limburgish (
li
Limburger)
Lingala ln
Lithuanian lt langLithuanian 24
Macedonian mk langMacedonian 43
Malagasy mg langMalagasy 93
langMalayRoman(Latin), 83(L),
Malay ms
langMalayArabic(Arabic) 84(A)
Malayalam ml langMalayalam 72
Maltese mt langMaltese 16
Maori mi
Marathi mr langMarathi 66
Moldavian mo langMoldavian 53
langMongolian(Mongolian), 57(M),
Mongolian mn
langMongolianCyr(Cyrillic) 58(C)
Nauru na
Nepali ne langNepali 64
Norwegian no langNorwegian 9
416
HTML
Occitan oc
Oriya or langOriya 71
Papiamentu
Polish pl langPolish 25
Portuguese pt langPortuguese 8
Punjabi pa langPunjabi 70
Rhaeto-Romance rm
Romanian ro langRomanian 37
Russian ru langRussian 32
Samoan sm
Sangro sg
Sanskrit sa langSanskrit 65
Serbian sr langSerbian 42
Serbo-Croatian sh
Sesotho st
Setswana tn
Shona sn
Sindhi sd langSindhi 62
Sinhalese si langSinhalese 76
417
HTML
Siswati ss
Slovak sk langSlovak 39
Slovenian sl langSlovenian 40
Somali so langSomali 88
Spanish es langSpanish 6
Swedish sv langSwedish 5
Syriac
Tagalog tl langTagalog 82
Tajik tg langTajiki 55
Tamazight
Tamil ta langTamil 74
Telugu te langTelugu 75
Thai th langThai 22
Tibetan bo langTibetan 63
Tigrinya ti langTigrinya 86
Tsonga ts
Turkish tr langTurkish 17
Turkmen tk langTurkmen 56
Twi tw
418
HTML
Ukrainian uk langUkrainian 45
Urdu ur langUrdu 20
Uzbek uz langUzbek 47
Venda
Vietnamese vi langVietnamese 80
Volap?k vo
Wolof wo
Xhosa xh
Yi
Yoruba yo
Zulu zu
419
38. HTML CHARACTER ENCODINGS HTML
The most common character set or character encoding in use on computers is ASCII - The
American Standard Code for Information Interchange, and this is probably the most
widely used character set for encoding text electronically.
ASCII encoding supports only the upper- and lowercase Latin alphabet, the numbers 0-9,
and some extra characters which make a total of 128 characters in all. You can have a
look at complete set of Printable ASCII Characters
However, many languages use either accented Latin characters or completely different
alphabets. ASCII does not address these characters; therefore, you need to learn about
character encodings if you want to use any non-ASCII characters.
The International Standards Organization created a range of character sets to deal with
different national characters. For the documents in English and most other Western
European languages, the widely supported encoding ISO-8859-1 is used.
Here is the list of Character Set being used around the world along with their description.
420
HTML
The Unicode Consortium was then set up to devise a way to show all characters of different
languages, rather than have these different incompatible character codes for different
languages.
Therefore, if you want to create documents that use characters from multiple character
sets, you will be able to do so using the single Unicode character encodings.
Unicode therefore specifies encodings that can deal with a string in special ways so as to
make enough space for the huge character set it encompasses. These are known as UTF-
8, UTF-16, and UTF-32.
The first 256 characters of Unicode character sets correspond to the 256 characters of
ISO-8859-1.
By default, HTML 4 processors should support UTF-8, and XML processors are supposed
to support UTF-8 and UTF-16; therefore all XHTML-compliant processors should also
support UTF-16.
421
39. HTML DEPRECATED TAGS HTML
A complete list of deprecated HTML tags and attributes are given here. All the tags have
been ordered alphabetically along with their equivalent tag or alternate CSS option.
<font> Deprecated. Specifies text font, size, and color font-family, font-size
422
HTML
423