HTML TUTORIAL


HTML Image

Life and webpages are dull without images. An image is worth a thousand of word. In this tutorial we will look at how to generate an image.

Before you start inserting an image, you get get an image that you want to put in a file. Keep the size of the image only as much as you can view it on the web page. Post the image in any directory of your webserver.

Inserting an image is very easy. Take a look at the following code.
<html>
<head>
<title>Reference Designer Title </title>
</head>
<body>
This image is at the home page of the referencedesigner.com
<br />
<br />
<img src="http://referencedesigner.com/allegro.gif" />
</body>
</html>

Notice the location of the image file at http://referencedesigner.com/allegro.gif. You may also specify the location at a website diferent from your webiste.
You can try this example online here .