how to add an image in html

HTML
<img src="flowers.jpg" alt="flowers">

//Always add the image type (jpg,png, etc) Adding alt text
is also good coding practice :)<!DOCTYPE html>
<html>
   <head>
      <title>HTML img Tag</title>
   </head>

   <body>
      <img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
         height="80">
   </body>
</html><img src="Add Image Source Here"><img src="image.jps">
//image.jpg is where you would put the inage source.<!DOCTYPE html>
<html>
   <head>
      <title>HTML img Tag</title>
   </head>

   <body>
      <img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
         height="80">
   </body>
</html><img src="img_girl.jpg" alt="Girl in a jacket" style="width:500px;height:600px;">
Source

Also in HTML: