A page must always start with 

<html>

Then put in the head

<head>

If you then want a title its 

<title>What you want here</title>

Follow the title page by adding

</head>

To do a background a solid color on the page it is done like this 

<body bgcolor="color here">


If you want a gif or jpeg image used for a background you do it like this

<body background="image name.gif/jpg">

The only way to get this to work is to upload the image into you file manager

After you have the background or color that you want on the page you use the word 

<body>

To do the text on the page in a different color(black is what it is at) use this code

<font color="blue">

To make your text bigger use this code 1 is the smallest 7 is the bigest

<font size="5">

To put a line across the page use this code

<hr>

To use a line break

<br>

If you want a bigger space between text or images use this

<P> </P>

If you are wanting to just show an image on a page you do it like this

<img src="image">

Once again the image must be uploaded into your file manager

If you want to make a link that opens in another window you do it like this

<a href="http://www.disney.com"target="resource window">Disney</a>

To center either a image,link or sentence you use these codes

<center> </center>

These next few codes can be used in many different ways.....See bottom of this page to see how it looks

To put a frame around an image use this code

<table bgcolor="red" border="7">
<tr><td align="center">
<img src=
"gif name here">
</td></tr></table>
Where it says "red" border that color can be changed to what color you want

This next code  is where you can put two images side by side in frames

<table>
<tr><td>
<table bgcolor="red" border="7">
<tr><td>
<img src=
"gif name here">
</td></tr>
<tr><td bgcolor="white" align="center">
<font size="3" color="darkblue"><b>
Type what you want here
</b></font>
</td></tr></table>
<td>
<table bgcolor="blue" border="7">
<tr><td>
<img src=
"gif name here">
</td></tr>
<tr><td bgcolor="white" align="center">
<font size="3" color="darkred"><b>
and here
</b></font>
</td></tr></table>
</td></tr></table>

This code is where you can put text to the left of the image

<table bgcolor="red" border="10" height="100" width="400">
<tr><td align="center">
<table bgcolor="black" border="0" height="100" width="400">
<tr><td align="center">
<font size="3" color="white">
<b>
Put<br>Your<br>Text<br>Here<br>
</b></font>
</td><td>
<table bgcolor="blue" border="7">
<tr><td>
<img src=
"dduck.gif">
</td></tr></table>
</td></tr></table>
</td></tr></table>

<STRONG>This makes the text bold</STRONG>

<TT>This make it looks like you typed it with a typewriter</TT>

<U>This puts a line under the text</U>

<I>This puts the text in italics</I>

<s>Puts a line right through the text</s>

<blockquote>Puts test in a box...great to use with left sided backgrounds</blockquote>

<P Align="center">This aligns text or images toward the center</P>

<P align="right">Aligns text or images to the right</P>

This one puts<sub>text</sub>below the normal text

This puts the <sup>text</sup> above the normal text

<big>This makes the text bigger without having to use a heading</big>

<small>This makes the text smaller</small>

<em>This emphasies the text</em>

<kbd>Keyed by the user...typically shown in typerwriter text</kbd>

<code>Does the same as above</code>

<cite>Indicates title of a book...usually shown in italics</cite>

If you want an image attached to a link heres the code

<a href="http://url of link here"><img src="//url of image here"></a>

To start music playing when the page comes up use this code

<BGSOUND SRC="song or wav name here" LOOP="infinite"> 

If you want to use marquee anywhere on the page use this code

<MARQUEE LOOP="infinite">put your text you want to scroll here</MARQUEE>

This is a pop-up window-- it closes by itself

<!-- Begin Pop Up Window -->
<script language="JavaScript">

config='toolbar=no,location=no,directories=no,status=no,menubar=no,width=200,height=150'

config += 'scrollbars=no,resizable=no'
pop = window.open ("","pop",config)

pop.document.write('<script language="javascript">');
pop.document.write('setTimeout(');
pop.document.write('"self.close()');
pop.document.write(';",3000)');
pop.document.write('</');
pop.document.write('script>');
pop.document.write('<body bgcolor=ltgreen>');
pop.document.write('<center><b><h2>Welcome</h2></b></center>');
pop.document.write('<center><b><h3>To Draac.Com</h3></b></center>');
pop.document.write('<center><b><h6>This Window Will Close Itself...</h6></b></center>');
pop.document.write('</body>');

</script>
<!-- End Up Window -->

Here is a code for a pull down menu

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- Original: Alex Tu <boudha1@hotmail.com> -->
<!-- Web Site:  http://www.oocities.org/alex_2106 -->

<!-- Begin
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
// End -->
</SCRIPT>
</HEAD>
<BODY>
<center>
<form name="form">
<select name="site" size=1>
<option value="">Go to....
<option value="http://www.yahoo.com">Yahoo
<option value="http://www.metacrawler.com">Metacrawler
<option value="http://www.altavista.digital.com">Altavista
<option value="http://www.webcrawler.com">Webcrawler
<option value="http://www.lycos.com">Lycos
<option value="http://javascript.internet.com">JavaScript Source
</select>
<input type=button value="Go!" onClick="javascript:formHandler(this)">
</form>
</center>

Here is the code for a fixed background(the background stays still the words on the page move

<BODY BACKGROUND="gif or jpg image here" bgproperties="fixed" TEXT="#000000" LINK="violet" VLINK="violet" ALINK="#ff0000"> 

This is the code for a warning box

<script language="Javascript">alert("Warning if you have several of these they will appear one right after another")</script>

At the end of a page you must have the following codes

The first one is if you used the font color and size codes

</font> 

The second one is 

</body>

The third one is 

</html>
</PRE>







This is how some of the texts additions look

This makes the text bold
This make it looks like you typed it with a typewriter
This puts a line under the text
This puts the text in italics
Puts a line right through the text
Puts test in a box...great to use with left sideed backgrounds

This aligns text or images toward the center


Aligns text or images to the right


This one putstextbelow the normal text
This puts the textabove the normal text
This makes the text bigger without having to use a heading
This makes the text smaller
This emphasies the text
Keyed by the user...typically shown in typerwriter text
Does the same as above
Indicates title of a book...usually shown in italics
This is how to do marquee
watch it scroll
Example 1


Example 2

See
This

Example 3

Put
Your
Text
Here

Example 4

Put anything you want here
Could be like
These are my favorite gifs