how to reduce image size in html css code example
Example 1: scale down image css
img.resize {
width: 540px; /* you can use % */
height: auto;
}
Example 2: image size css
img {
width: width;
height: height;
}
img.resize {
width: 540px; /* you can use % */
height: auto;
}
img {
width: width;
height: height;
}