To add images to a webpage, we start with the <img>
tag.
<h3>Drawing of <em>Earthrise</em> </h3>
<img>
Just like <br>
, <img>
is an empty tag. That means it has no closing tag.
<h3>Drawing of <em>Earthrise</em> </h3>
<img>
To display an image, an image tag needs the src
attribute. src
stands for source.
<h3>Drawing of <em>Earthrise</em> </h3>
<img src="https://mimo.app/i/earth.png">