How to resize an image with HTML.
Question
How to resize an image with HTML.
Answer
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.
Specify the width and height in your IMG SRC HTML tag as shown in the below example.
<img src="http://www.computerhope.com/title.gif" width="200" height="85" alt="Computer Hope">
Example
How the image appears normally.

Using the above code to resize the image.

