Answers for "how i put an image in html"

42

adding image in html

<img src="image.png" alt="Description for image" width="250" height="250">
Posted by: Guest on February-22-2021
0

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

Code answers related to "how i put an image in html"

Browse Popular Code Answers by Language