Answers for "html pics"

2

html picture

<picture>
  <source media="(min-width:650px)" srcset="img_pink_flowers.jpg">
  <img src="img_orange_flowers.jpg" alt="Flowers" style="">
</picture>
Posted by: Guest on July-18-2021
-1

how to show an image in html

// Show image in html bois

<!DOCTYPE html>
<html>
  <head>
  </head>
  <body>
    <div class="img">
    	<img class="img" src="image.png">
    </div>
  </body>
</html>
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language