IMAGES



Some rules to image manipulation:


Adding pictures to your web page is simple. Just add:

<img src="your_name.gif/jpg">

to the place you want it on your page.
The difficulty in this is getting the image to appear just right.
You can resize it using any one of many programs like Photoshop or you can resize it by adding height and width commands to your tag like so:

<img src="your_name.gif"  height=# width=#>

Fill the "#" field in with numbers. this will be your new picture size when it appears on your page.
Adding the "align=left/right" command will make text appear to the left or right of the image.

Here is a fun application of images: using it as a Link.

<a href=" http://wherever.it.is "><img src="your_name.gif" height=##  width=##></a>




Not Covered:


Back to Top