| <HTML> </HTML> |
Tells the browser that it is getting a
web page. |
| <HEAD> </HEAD> |
Tells the browser that it is getting the
header information. |
| <TITLE> </TITLE> |
The title that appears at the top of the
browser and is generally used for favorites. |
| <BODY> </BODY> |
Tells the browser that it is getting the
body information. |
| <I> </I> |
This text is italicized. |
| <B> </B> |
This text is in bold. |
| <TT> </TT> |
TeleType appears monospaced. |
| <S> </S> |
This text has a line through it. |
| <U> </U> |
This text is underlined. |
| <SUP> </SUP> |
Superscript appears above |
| <SUB> </SUB> |
Subscript appears below. |
| <EM> </EM> |
Say it with emphasis. |
| <STRONG> </STRONG> |
Say it with strong emphasis. |
| <CODE> </CODE> |
var
count : integer;
begin |
| <CITE> </CITE> |
A citation gives credit where credit is
due.
(Some famous person, 2044) |
| <DFN> </DFN> |
The tag used to highlight a word or
phrase that will be defined is called the defining tag. |
| <P ALIGN=RIGHT> |
Moves it all to the right. |
| <P ALIGN=LEFT> |
Moves it all to the left. |
| <P ALIGN=CENTER> |
Puts things in the middle. |
| <P NOWRAP> |
Keeps the text running on and on and on. |
| <BLOCKQUOTE> </BLOCKQUOTE> |
Blockquote indents and adds extra lines
at the top and bottom of the text. |
| <PRE> </PRE> |
Keeps things just as they are when you
add them to your page. |