how to put picture html code example
Example 1: how to add image in html
<img src="pic_trulli.jpg" alt="Italian Trulli">
Example 2: picture html
<picture>
<source srcset="mdn-logo-wide.png" media="(min-width: 600px)">
<img src="mdn-logo-narrow.png" alt="MDN">
</picture>