The Basics | Getting Started | Fun With Text | Lists | Images | Links | Other Stuff
All commands go between pointed brackets (<command>)
To take off a command, put a slash before the command (</command>) --not all commands need to be taken off manually
I recommend using Notepad to do all of your HTML work, but Word Perfect works too (use Word Perfect for tables). Just remember to save as ".html" or ".htm"
Hex codes (#cc0c0c0 and others) are confusing, and mostly unnecessary. You can substitute color names in for most of them, and I know you know the names of your colors!
First, put <html> at the top of your page
Then, make a title:
<title> Your Page's Title</title>
Then, format the body:
<body background="backgroundname.gif(or .jpg)" text="text color" link="link color" vlink="link color"> If you want a color for a background, and not a picture, write 'bgcolor="backgroundcolor"' instead of 'background="backgroundname"'
These facts will help you:
'background' refers to an actual picture file (.gif or .jpg)
'bgcolor' refers to the plain color of the background
'text' is the color of the words
'link' is the color that the links on your page will be
'vlink' is the color that the viewed links will be
The format for my page looks like this:
<html>
<title>So You Want To Make A Home Page </title>
<body bgcolor="white" text="black" link="blue" vlink="purple">
Don't forget to put </body> and </html> at the bottom of you page
<b>Bold</b>
<i>Italic</i>
<i><b>Bold Italic</b></i>
<u>Underlined</u>
<blink></blink>
<font color="color">Change the Color</font> Information on colorcodes can be found HERE
<font face="style">Change the Face</font>
<pre>Preformatted Text</pre>
OR
7
6
5
4
3
2
1
There are 3 main types of lists: Bulleted, Numbered, and Definition
<img src="image name.gif(or .jpg)">
<alt="text that appears while the image is loading">
Sizes can be changed by placing 'width="#of pixels" height="#of pixels"' after the image name
You can align images compared to the text by putting 'align="placement"' (for horizontal placement) or 'valign="placement"' (for vertical placement) after the image's name, or after the size
Examples of Placements are: left, right, center, top, bottom, and middle
An example of image coding would be:
<img src="imagename.gif" width="350" height="300" alt="my message">
Links to Other Pages:
<a href="link url"> Link Name </a>
It will look like this on your page:
Yahoo!
E-mail Link: (sends e-mail to the named account)
<a href=mailto:someone@somewhere.com> Person's name </a>
It will look like this:
Caroline
Note: All links will appear underlined
<hr> makes a bar like this:
<hr noshade> makes a bar like this:
You can change the size: <hr size=#>
You can change the width: <hr width=#%>
And you can use those in any combination: <hr noshade size=# width=#%>