Little Bits Of HTML

Line Break
<BR>
Inserts a line break.  Used in places where you would normally hit the Return/Enter key.


Paragraph
<P>
Inserts a blank line.  Used to separate paragraphs.


Center
<CENTER> </CENTER>
Centers everything inbetween the two tags.


Horizontal Rule
<HR WIDTH=100% ALIGN=Center SIZE=3>
Inserts a centered horizontal rule that fills 100% of the screen width. The % can be changed to any number between 1 and 100.


Font - Color
<FONT COLOR=#??????> </FONT>
All text inbetween the tags is whatever color is placed where the ???s are. You put in the hexidecimal value for the color you want where the ??? are. See this chart for a list of all colors and their hex value.


Font - Size
<FONT SIZE=?> </FONT>
All text inbetween the tags is whatever size is placed where the ???s are. Sizes are any value between -2 and +3.


Display Image
<IMG SRC="???">
Displays the image located at the URL where the ???s are.


Link
<A HREF="???">***</A>
Takes the text inserted where the ***s are, and links it to the URL inserted where the ???s are.


Link - Target New
<A HREF="???" TARGET="new">***</A>
Takes the text inserted where the ***s are, and links it to the URL inserted where the ???s are. When this link is clicked, the URL is displayed in a new browser window.