resize jpg css code example
Example 1: scale down image css
img.resize {
width: 540px; /* you can use % */
height: auto;
}
Example 2: CSS shrink image
<div style="width: 200px; height: 200px;">
<img src="imagen\imagen1.jpg" style="width: 100px; height: 100px;"/>
</div>