user96790
0
Q:

picture html

<img src="image.jps">
//image.jpg is where you would put the inage source.
14

<img src="img_girl.jpg" alt="Girl in a jacket" style="width:500px;height:600px;">
 
3
<!--When the image is in the same folder as your html file-->
<img src="example.jpg">
<!--When the image is in a image folder-->
<img src="./image/example.jpg">
4
<picture>
 <source srcset="mdn-logo-wide.png" media="(min-width: 600px)">
 <img src="mdn-logo-narrow.png" alt="MDN">
</picture>
0

New to Communities?

Join the community