HomePage Building Tutorial Part 3
Lets see the codes it takes to put an image onto a page.
You need the URL of an image to start with.
Say you have the URL and it should look like this.....
http://www.wtv-zone.com/mrsandman41/images/anialien.gif
You then need to get the browser to see it,so we have to add a little extra info to it like this example below.
<img src="http://www.wtv-zone.com/mrsandman41/images/anialien.gif">
This will make your image show up on your page like this.....
I used the same code for this image as above.
The image URLs are different sometimes and the file extention at the end is the most changed.
Notice the word (GIF) at the end of the URL,this can be (JPG).
Here is how you can get a linkable word onto a page....
<a href="http://www.wtv-zone.com/mrsandman41/TUTE/pagebuilding.html">Page 1</a>
You will only see (Page 1) on your page and this would be the link you can click on to go to another page.
To make an image clickable you would install the code to make an img show into the place of page 1 like this....
<a href="http://www.wtv-zone.com/mrsandman41/TUTE/pagebuilding.html"><img src="http://www.wtv-zone.com/mrsandman41/images/anialien.gif"></a>
It would look and work like this below and take you back to page 1.
~ Page 1
~
Page 2
~
My Home page Click Here