Adding height and width attributes to your images, will resize the image to your liking. Also adding the exact height & width of your image, without resizing it, will speed up the load time of the image on your Web Page.
Click Here For A Tool To Find Out Image Sizes
Here is an example on the placement of these attributes within your image code. I will be using the exact image size to aid in the loading of the image on our Web Page.
<IMG SRC="aruba.jpg" HEIGHT="361" WIDTH="251" ALT="sunset">
If the exact height and width is not known. Then add either the width or the height alone. The browser will figure the missing attribute on it's own.
This is how it would be used in your document:
<CENTER>
<IMG SRC="aruba.jpg" HEIGHT="361" WIDTH="251" ALT="sunset">
</CENTER>
<IMG SRC="aruba.jpg" HEIGHT="361" WIDTH="251" ALIGN="right" ALT="sunset">
<IMG SRC="aruba.jpg" HEIGHT="361" WIDTH="251" ALIGN="left" ALT="sunset">
<IMG SRC="aruba.jpg" HEIGHT="361" WIDTH="251" ALIGN="left" HSPACE="40" ALT="sunset">
You Will See Some Example Pages Using Alignment Tags On The Next Page.