html picture show code example
Example 1: how to add image in html
<img src="img_girl.jpg" alt="Image Load Error" width="500" height="600">
Example 2: picture html
<picture>
<source srcset="mdn-logo-wide.png" media="(min-width: 600px)">
<img src="mdn-logo-narrow.png" alt="MDN">
</picture>