| <HTML> <HEAD> <TITLE>PAGE TITLE</TITLE> </HEAD> <BODY>      Web Page document here </BODY> </HTML> |
<P> Paragraph tag add a blank line before the document </P>
| Ordered List <OL>       <LI>List1                                                             1. List1       <LI>List2                                                             2. List2 </OL> |
| Unordered List <UL>       <LI>List                                                               ·  List       <LI>List                                                               ·  List </UL> |
| Definition List <DL>                                                                         Term       <DT>Term<DD>Definition                                              Definition       <DT>Term<DD>Definition                                 Term </DL>                                                                                      Definition |
| TAG | DESCRIPTION | SAMPLE |
|---|---|---|
| <EM> | Indicates that characters should be emphasized in some way. Usually displayed with italics. | example |
| <STRONG> | Emphasizes characters more strongly than . Usually displayed in a bold font. | example |
| <CODE> | Indicates a sample of code. Usually displayed in a Courier font or a similar font that allots the same width to each character. | example |
| <KBD> | Used to offset text that the user should enter. Often displayed in a Courier font or a similar font that allots the same width to each character. | example |
| <VAR> | Indicates a variable. Often displayed in italics or underlined. | example |
| <CITE> | Indicates short quotes or citations. Often italicized by browsers. | example |
| TAG | DESCRIPTION | SAMPLE |
|---|---|---|
| <B> | Indicates that the text should be bold. | example |
| <I> | Indicates that the text should be italic. | example |
| <TT> | Indicates that the text should be used with a font like Courier that allots the same width to each character. | example |
| <BIG> | Indicates that the text should be displayed in a big font. Available only in HTML 3.0 and above. | example |
| <SMALL> | Indicates that the text should be displayed in a small font. Available only in HTML 3.0 and above. | example |
| <SUB> | The text should be displayed as a subscript, in a smaller font if possible. Available only in HTML 3.0 and above. | example |
| <SUP> | The text should be displayed as a superscript, in a smaller font if possible. Available only in HTML 3.0 and above. | example |
| TAG | DESCRIPTION | SAMPLE |
|---|---|---|
| &#169 | Copyright symbol | © |
| &#174 | Registered trademark | ® |
| &#183 | Middle dot | · |
| &#186 | Masculine ordinal | º |
| &#153 | Trademark symbol | |
| &nbsp | Non-breaking space, useful when you want to insert several blank spaces one after another |   |
| &LT | Less than sign | < |
| &GT | Greater than sign | > |
| &AMP | Ampersand | & |
<IMG SRC="apple01.gif">
<IMG SRC="ani-alarmclock.gif">
ANCHOR| Color Name | RGB Triplet | Hexadecimal | Color Name | RGB Triplet | Hexadecimal |
|---|---|---|---|---|---|
| BLACK | 0,0,0 | 000000 | RED | 255,0,0 | FF0000 |
| BLUE | 0,0,255 | 0000FF | YELLOW | 255,255,0 | FFFF00 |
| GREEN | 0,128,0 | 008000 | WHITE | 255,255,255 | FFFFFF |
| <MAP NAME="mapname"> <AREA SHAPE="shape" COORDS=coordinates HREF=URL> <AREA ……………ADDITIONAL HOTSPOT…………….> </MAP>           SHAPE           RECTANGLE HOTSPOT           <AREA SHAPE=RECT COORDS="x_left, y_upper, x_right, y_lower" HREF="URL">           CIRCLE HOTSPOT           <AREA SHAPE=CIRCLE COORDS="x_center, y_center, radius" HREF="URL">           POLYGONAL HOTSPOT           <AREA SHAPE=POLY COORDS="x1, y1, x2, y2, x3, y3…" HREF="URL"> <IMG SRC="image" USEMAP="#mapname"> |
| <PRE>           text </PRE> |
| <TABLE>           <TR>                     <TD> First Cell      </TD>                     <TD> Second Cell </TD>           </TR>           <TR>                     <TD> Third Cell    </TD>                     <TD> Fourth Cell  </TD>           </TR> </TABLE> |
| <CENTER> <TABLE> </TABLE> </CENTER> |
<HEAD> <TITLE>page_title</TITLE> </HEAD> <FRAMESET>
<FRAMESET> </FRAMESET>
</HTML> |
| _blank | loads document into a new browser window resulted in two windows |
| _self | loads document into same frame |
| _parent | loads document into the page with hyperlink tag |
| _top | loads document into full display and replace current window |
| <HEAD> <BASE TARGET=frame_name> </HEAD> |
<FRAMESET>
<NOFRAMES> <BODY>
</NOFRAMES> |
<FORM NAME=form_name>
|
| <INPUT TYPE= NAME=Name_of_field VALUE=default_value SIZE=#Character MAXLENGTH=#Character> |
SIZE=2       SIZE=15 |
<SELECT NAME=Name_of_field>
<OPTION>Name_of_option2 To show more than just one item in a select box upon opening <SELECT SIZE=Number_of_item_to_display> To allow for multiple items to be select in a select box. <SELECT MULTIPLE> |