display an image in html code example

Example 1: img html

<img src="smiley.gif" alt="Smiley face" height="42" width="42">

Example 2: 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>

Example 3: how to put an image in html

<img src="img_girl.jpg" alt="Girl in a jacket" style="width:500px;height:600px;">

Example 4: how to add image in html

<img src="logo.png" />

Tags:

Html Example