Width and Height
Picture Width and Height
DescriptionHere, you will learn how to change the width and height of pictures. The tag for the width and height is WIDTH="#" HEIGHT="#". This is added onto the picture tag so the end result looks like

<IMG SRC="url" WIDTH="#" HEIGHT="#">.

The # symbol is replaced by the number of pixels you want the width and the height to be. Below is an example of using the width and height tag.
Code
<IMG SRC="http://www.activejump.com/images/sample.jpg" WIDTH="100" HEIGHT="100">
Output
Practice
Advertisements