get it on google playCreated with Sketch.
HTML> Images

Images

To add images to a webpage, we start with the <img> tag.

 <body>
  <h3>Drawing of <em>Earthrise</em> </h3>
  <img>
 </body>

Just like <br>, <img> is an empty tag. That means it has no closing tag.

 <body>
  <h3>Drawing of <em>Earthrise</em> </h3>
  <img>
 </body>

To display an image, an image tag needs the src attribute. src stands for source.

 <body>
  <h3>Drawing of <em>Earthrise</em> </h3>
  <img src="https://mimo.app/i/earth.png">
 </body>
TRY IT ON THE APP