How to resize an image with HTML
Question
How to resize an image with HTML.
Answer
Tip: 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 still suggest you resize an image using an image editor to help with download times. When an image is resized using the below steps it still has to load the larger image, even though it appears small in the browser.
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.

