Links and Images Basics
These tips and tricks will teach you how to put a link or an image into an html page.
To put a link, use the following code:
<a href="http://google.com">Google</a>
The result is as follows:
Google
Make sure you change "http://google.com" to the address of the site that you want to link to and that you change "Google" to the text that you want users to see.
To put an image into your web page, use the following code:
<img src="http://www.google.com/intl/en/images/logo.gif">
The result of that code is as follows:

Make sure that you change "http://www.google.com/intl/en/images/logo.gif" to the address of the image you want to display.
So those are two basic html tips!
To put a link, use the following code:
<a href="http://google.com">Google</a>
The result is as follows:
Make sure you change "http://google.com" to the address of the site that you want to link to and that you change "Google" to the text that you want users to see.
To put an image into your web page, use the following code:
<img src="http://www.google.com/intl/en/images/logo.gif">
The result of that code is as follows:

Make sure that you change "http://www.google.com/intl/en/images/logo.gif" to the address of the image you want to display.
So those are two basic html tips!

2 Comments:
How to you pull an image of ur computer out of one of your own files and put it on ur webpage?
laurenthomason@hotmail.com
By
Anonymous, at July 19, 2005
First, you need to put your image on the internet.
Second, you need to get the URL of the picture. If you used the link above, then the URL is under "Direct Link to Image."
By
nilsmo, at August 10, 2005
Post a Comment
<< Home