reduce image size html code example

Example 1: how to change the size of an image in html

<img src='image.jpg' alt="Image" height="42" width="42">.

Example 2: css image size adjust

squareImage {
  border: 1px solid #ddd;	/* thickness and color of border */
  border-radius: 4px;		/* edge rounding of border */
  width: 150px;				/* width of image (px or % or auto) */
  height: auto;				/* height of image (px or % or auto) */
}

Example 3: how to change size of image in html

<img src='img.png' alt='image' width='how much you want' height='how much you want'>

Tags:

Html Example