resize image with css code example
Example 1: make image scale based on screen size
background-size: cover
Example 2: CSS shrink image
<div style="width: 200px; height: 200px;">
<img src="imagen\imagen1.jpg" style="width: 100px; height: 100px;"/>
</div>