(First, to take a TEST DRIVE of our FREE Cool Pages Web Pages, you can use "guest" & "guest" as username and password.)
This information is what you'll need when you "write" your web page. First you'll need to become a member. Go back to the Login Page, and click on "New User"
In HTML you control the look of your page with 'tags'. A 'tag' tells your
browser what to do with the line, or lines, of text or images.
A 'tag' always begins with a less-than sign <
and ends with a greater-than sign >
and should look like this - <XXX>
Some tags require an end.
- start <XXX>
- end </XXX> - the end tag uses a forward slash in front of the
letters
<B> - Bold text, requires an end tag </B>
<CENTER> - Centers text on the page, requires an end center </CENTER>
<P> - A paragraph, skips a line. (no end P required)
<BR> - This is a line break, use it when you want to stop a line at a certain place.
NOTE: Paragraph tags are not required for EZ HTML, this is done automatically in the program.
<H1> - Header, requires an end tag </H1>
Headers are numbered 1 to 6, #1 being the largest.
<A HREF="address_to_page"> - Anchor tag, requires an end tag </A>
<A HREF="http://www.address_to_page">Clickable text here</A>
<A HREF="http://www.rlaj.com">Visit my Home Page</A>
Example:
If you are on your first page and you want to link to your second page,
in one of the 'link' boxes, just type the name of your 2nd page -
your-username2.html
Then put discriptive text for the page, this
is your 'clickable' text.
The tag you need to use to add more images to your page is:
<IMG SRC="../images/your_image.gif">
Just copy the above tag and place it in one of the paragraphs where you
would like the image to appear. Select the image you want to use
and replace the 'your_image.gif' with your image name.
You can only use .gif or .jpg images with this program.
<LI> - this is a list item, will show a bullet next to the item
<UL>
<OL> - this is an Ordered list (requires an end tag </OL>)
<LI> - this is a list item, will show a number next to the item
<OL>
If you want more than this tutorial, a more detailed page is available Here