Reference number: CH000055
How to resize an image with HTML.
Issue:How to resize an image with HTML.
Additional information:
The below steps are for users who
wish to keep an image the original size but just re-size the image
in HTML code. Although this is
possible we highly suggest you resize an image using an image
editor to help with download times.
A listing of image editor programs
can be found on document CH000760.
Solution:To do this you need to specify the width and height in your image tag. Here is an
example:
<img
src="http://www.computerhope.com/title.gif" width="200"
height="85">
Example:
Original:

Using the above source:

|