HTML Building Blocks

bullet<command> ...... e.g. <table>
bullet<command attribute> ...... e.g. <table border>
bullet<command attribute = value> ...... e.g. <img src="image.gif">

To begin each new paragraph

bullet<P>
bullet<BR>

To type '<' and '>'

bullet< ...... &lt;
bullet> ...... &gt;

A Typical Web Page

bullet<HTML>
bullet  
bullet        <HEAD>
bullet 
bullet             <TITLE> .................. </TITLE>
bullet 
bullet        </HEAD>
bullet 
bullet        <BODY>
bullet             ................
bullet             ..............
bullet             ...........
bullet        </BODY>
bullet  
bullet</HTML>

FONT STYLE

bulletDefault Font Size : <BASEFONT SIZE="5">
bulletFont Face : <FONT FACE="fontname1, fontname2">
bulletFont Size : <FONT SIZE=4>
bulletFont Colour : <FONT COLOR="#12ABFF>                  Example
bulletFont Colour : <FONT COLOR="blue">                        Example
bulletBold Type : <B> ...... </B>                                         Example
bulletItalic Type : <I> ...... </I>                                           Example
bulletUnderline : <U> ...... </U>                                         Example
bulletSuperscript : <SUP> ...... </SUP>                                For Example
bulletSubscript : <SUB> ...... </SUB>                                  For Example
bulletStrike out : <STRIKE> ....... </STRIKE>                      Example
bulletBlink : <BLINK> ...... </BLINK>  (netscape only)        Example

Web Images

bulletInsert Image : <IMG SRC="image.ext" ........other attributes>
bullet 

Others

bulletAdding Comment : <!--   ......   -->
bullet