Here's a little help for all of you stuck with HTML




Remember, replace the ( ) with << >>


First off, the basics, or stuff you need:
(html)(head)(title)Title of your page(/title)(/head)(body bgcolor=color text=color link=color vlink=color)..................Body Text.................(/body)(/html)


Playing background music:
Between (body and bgcolor=color), type in this info: bgsound src="//url.of.song"
as in:
(body bgsound src="//url.of.song" bgcolor=color text=color link=color vlink=color)



All of the rest of the info is in the Body Text



Making a link:
(a href="http://url.of.link")Name of link(/a)


Making a link with an image as a link name:
(a href="http://url.of.link")(img src="//url.of.image")(/a)


Placing an image on the page:
(img src="//url.of.image")


Clicking a link to play music:
(a href="http://url.of.song")Song Name(/a)


Centering Text:
(center)text(/center)


Making a line break (or blank lines):
(br) to move to next line, (br)(br) to skip a line, (br)(br)(br) to skip two lines, and so on.


Itallics:
(i)text(/i)


Underline:
(u)text(/u)


Changing font color:
(font color=color)text(/font)




Since 5/6/99