With this tag we can increase or decrease the font size. The default size is 12. We can increase this till +7 or decrease till -7. We use (+) sign for increasing and (-) sign for decreasing. The tag format is
<FONT SIZE=0>............................................</FONT>
Example:
<HTML>
<HEAD>
<TITLE>
Program...
Revision 0.0.1

Today we are going to revise all the things we learn so far. We will write all the tags in a single page. So far we learnt how to BOLD, or ITALIC or UNDERLINE a text. Then we learn how to BLINK...
Subscript and Superscript Element
SUBSCRIPT
We
familiar with Subscript element. It is mostly used in chemical name ,
The tag is looks like
<SUB>………………….</SUB>
Example:
<HTML>
<HEAD>
<TITLE>
Program 6
</TITLE>
</HEAD>
<BODY>
This is normal H2O and This is SUBSCRIPT H<SUB>2</SUB>O
</BODY>
</HTML>
Description...
Blink Text

Now e will learn how to blink some part of a text. Its work like
So for doing effect like this we have to use a tag. The tag format is <BLINK>..............................</BLINK>
Example:
<HTML>
<HEAD>
<TITLE>
Program...
Italics and Underline Elements
We are Learning how to enhance your body contents. If You want to represent some parts
of your text as Italic format then you can use this tag,
<I>…………………………………..</I>
For Example:
<HTML><HEAD>
<TITLE>
Program 5
</TITLE>
</HEAD>
<BODY>
This is...
Bold Face Element

After learning the BODY tag now we will learn how to enhance the body part. In text mood if you want to BOLD any part of your text then you have to use the BOLD tag. This tag looks like following:...
Use of BODY Element

After the <HEAD> tag and <TITLE> tag <BODY> tag starts. The main contents of a webpage stores here. Inside this part we can contain images, audios, videos or anything else like forms...
Lets move on to Next Program
We will now Learn How to put tile on your webpage. Title tag is <TITLE>...........</TITLE> . For doing this first you have to open the notepad. Then write down the following codes.
<HTML>
<HEAD>
<TITLE>
Online School
</TITLE>
</HEAD>
<BODY>
My...
Lets Start
If you are using Windows xp or
Windows seven operating system then simply go to all programs and select
accessories and then notepad. Like:
Start=>All programs=>Accessories=> Notepad
If you are using Windows 8 then move your cursor to the corner of the right
side and click on search, then...
HTML Structure
HTML is written by using tags. Every
tag starts with ‘<’ ‘>’ and end with same sign but with a /.
For example we can see <HTML>, </HTML>. It is mandatory to
start and end every HTML file with <html> and </html>. In
between HTML tags there are...
Learning Web page Development with HTML
HTML means Hyper Text Markup
Language. In general we can write documents with MS word or word pad or
note pad but they are not suitable for sending or publishing in web. So we need
a mark up language. It is not like C++ or Visual Basic , its a scripting
Language. It is very easier then programming...