Site hosted by Angelfire.com: Build your free website today!
The Basic MUST HAVE tags
Text Style
Symbols
Headers
Breaks & Spaces
Colors
Images & Graphics
Lists
Tables
Forms
Feedback
Try it out NOW!




Text Style



<center></center> aligns everything to the center of the page

<p align=left></align> aligns all on left

<p align=right></align> aligns all on right

Text Styles
<html>
<head>
<title>Text Styles</title>
<body bgcolor=white>

<p align=left>This is to the left</align><p>

<p align=right>This is to the right</align><p>

<center>This is centered text</center><p>

</body>
</html>

This is to the left

This is to the right

This is centered text
 
 
 
 
 

***when placing text next to an image, use the following 3 tags***

<align=top></align> text will be flush with top of image

<align=bottom> </align> text will be flush with bottom of image

<align=middle></align> text will be placed in the middle of the graphic (not IN the graphic)

Text Styles2
<html>
<head>
<title>Text Styles2</title>
<body bgcolor=white>

<img src="https://www.angelfire.lycos.com/doc/images/images1/2s.GIF" align="top"> This should be flush with the top </align> <p>

<img src="https://www.angelfire.lycos.com/doc/images/images1/2s.GIF" align="middle"> This should be right in the middle </align> <p>

<img src="https://www.angelfire.lycos.com/doc/images/images1/2s.GIF" align="bottom"> This should be flush with the bottom </align> <p>

</body>
</html>

This should be flush with the top

This should be right in the middle

This should be flush with the bottom

 
 
 
 
 

<b></b> bold

<i></i>italics

<u></u>underline

<strong></strong> like bold

<small></small> creates small print

<big></big> makes text, well, big

<sub></sub> makes subscript

<sup></sup> makes superscript

<pre></pre>

preformatted text: no html, 
		appears on the screen 
	as it is 			typed in

<cite></cite> like italics

<dfn></dfn> bold or italic definition

<blockquote></blockquote>

makes a paragraph that spans across the page with even margins


<font color=XXXXXX></font color> To change the font color, enter the six-digit color code (i.e. #FF6EC7) always preceded by the pound sign (#), or type the color directly into the tag (i.e. font color=blue). Please see the Colors Lesson for a list of colors and codes.

<font face=XXXXXX></font face> Using this tag, you can change the font itself. When you type in the name of a font, all text will be changed until the is read. Remember that not everyone has the same fonts on their computer as you do, and only the ones they have will show up correctly. A few safe fonts on most computers are "Helvetica," "Arial," "Times New Roman," and "Lucida," or "Lucida Handwriting."

Font Styles
<html>
<head>
<title>Font Styles</title>
<body bgcolor=yellow>

<font face=Helvetica>This is in Helvetica</font face><br>
<font face=Arial color=blue>This is Arial in blue</font face color><br>
<font face=Lucida color=green>This is green font in Lucida</font face color><br>

</body>
</html>

This is in Helvetica
This is Arial in blue
This is green font in Lucida