increase image size using css code example
Example 1: image size css
img {
width: width;
height: height;
}
Example 2: CSS shrink image
<div style="width: 200px; height: 200px;">
<img src="imagen\imagen1.jpg" style="width: 100px; height: 100px;"/>
</div>