Normal Text with out use of any Tag

This paragraph below has no spacing. Althought in the text file there was a carriage return at the end of each line. HTML needs you to tell it where you want your spacing and carriage return.

Use of Tag BR

The <BR> act as a carriage return in HTML.<BR>.
Example this paragraph uses <BR> so a new sentence will appear on the next line.<BR>.
Also note that BOLD can be create with the tag <B> </B>.

Use of Tag P

For new paragraph spacing use <P>.

Note that the next line appears a space below the previous line <P>.

Also note the use of tag <I> and </I> to have Italics Text.

Note the difference in the Header

By using Tag H1,H2,H3,H4,H5 and H6 a web page can have different size header.
Please note that H4,H5 and H6 are very Seldom use.
Above we see the use of <BLINK> and </BLINK>

Text Size

<SMALL>This is small</SMALL>.

<BIG>This is BIG.</BIG>

FONT

<FONT SIZE=? COLOR=? FACE=? > <FONT> changes the size,color,type.
Possible size is positive,negative 1..7.
Possible colors are BLUE,RED,YELLOW,GREEN,etc.
Possible FACE is Arial,Lucida Sans,etc. Example
<FONT SIZE=+7 COLOR=RED FACE=Sans> Hello WORLD </FONT>

HELLO WORLD

also <BASEFONT SIZE=? > sets the BASE FONT.

Exmaple, <BASEFONT SIZE=-3> notice that all text below has changed it's size?

Other Useful Text Tag

<U>Underline</U>

<S>Strikethrough</S>

Use of <SUP>SuperScript<SUB>

Use of <SUB>SubScript</SUB>

This Text Has been <ALIGN=RIGHT>

This Text Has been <ALIGN=CENTER>

This Text Has been <ALIGN=LEFT>

Addition of Horizontal Line using <HR>.


Go Back to Main Page.....