Answers for "how to tag a picture in html"

16

images in html

<img src="image.jps">
//image.jpg is where you would put the inage source.
Posted by: Guest on December-27-2019
1

img tag

<img src="photo1.png" alt="">
Posted by: Guest on September-07-2020
0

picture tag

<picture>
  <source srcset="logo-768.png 768w, logo-768-1.5x.png 1.5x">
  <source srcset="logo-480.png, logo-480-2x.png 2x">
  <img src="logo-320.png" alt="logo">
</picture>
Posted by: Guest on June-12-2021

Browse Popular Code Answers by Language