image repite code example
Example 1: resize image html
<!--
Resize image using html
When we add any image in 'src' attribute of 'img' tag then image appears with original size on webpage
and if we want to resize the image we have to add extra attribute i.e. height and width to img tag to resize the image
-->
Simple img tag
<img src="image_path" alt="Image Sample">
With height and width attribute
<img src="image_path" width="200" height="40" alt="Image Sample">
<!--
I hope it will help you.
Namaste
Stay Home Stay Safe
-->
Example 2: imagen responsivo
1<img src="img-mobile.jpg" 2 srcset="img-mobileHD.jpg 2x, 3 img-tablet.jpg 768w, 4 img-tabletHD.jpg 768w 2x, 5 img-large.jpg 1200w, 6 img-largeHD.jpg 1200w 2x" />