1ban.gif (5025 bytes)

 

 

Guides

 

 

Text .::. Email .::. Images .::. Links .::. Frames

 

 

 

 

 

 

 

 

Text

 

To change colour of text, type:

<font color="COLOUR HERE">

You can use the name of the colour, or use a colour code. To see a list of colour codes, click here.

A few examples:

<font color="#FF99FF">

<font color="#3399FF">

 

To change text size, type:

<font size="1">

There are 7 different sizes.

This is size 1

This is size 2

This is size 3

This is size 4

This is size 5

This is size 6

This is size 7!

 

You can also change if text is bold, Italic or underlined

<b>Makes text bold

<i>Makes text italic

<u> Makes text underlined

<b><i><u>Makes text all three!

To stop text being like that, type:

</b> Stops Bold

</i> Stops Italic

</u> Stops Underlining

 

 

 

Email

 

To add your email address, type (replace the you@domain.com with whatever your email address is):

<a href="mailto:YOU@DOMAIN.COM">Email Me!</a>

Should turn to:

Email Me!

 

 

 

Images

 

To insert a picture, type:

<img src="PICTURE URL HERE">

 

For example, to add this picture type:

<img src="http://us.i1.yimg.com/us.yimg.com/i/mail/uk/ym.gif">

 

Image above copyright Yahoo! Mail

 

 

 

Links

 

To link to another page, type:

<a href="ADDRESS URL HERE"> Link Name </a>

 

For example, this links to Wolf Mountain:

Wolf Mountain!!!

 

 

 

 

Frames

 

First make three different pages, one called Index.html, one called Menu.html and one called Main.html

 

On Index.html copy this code into the main HTML section of your site.

You can change the title of your page and the how big the frames are by changing the writing in red.

 

<title>My Page</title>

<frameset cols="
25%,75%">
<frame name="Menu" src="Menu.html">
<frame name="Main" src="Main.html">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>

 

On your other pages (Menu.html and Main.html) decorate how you wish. Remember Menu will be the frame on the left, and Main will be the frame on the right.

 

To make a link in the Menu frame open in the Main frame, just use this code:

(If you have called the Main frame something else, remember to change the "target="Main" to whatever you called it)

Change anything in red.

<a href="WHATEVER YOU WANT TO LINK TO ADDRESS HERE" target="Main">Link Name</a>