Common HTML5 Elements - Embedded content

img element

HTML documents do not contain the images themselves, but merely contain references to the images to be displayed. Common image file types are:

Example 2.9 - img element - Example 2.9
<img src="https://cscie12.dce.harvard.edu/images/harvard-extension-school-shield.png"
  alt="Harvard University Extension School Shield" height="330" width="287" />
HTML
Example 2.10 - 'img' element with an anchor - Example 2.10
<a href="https://extension.harvard.edu/">
  <img src="https://cscie12.dce.harvard.edu/images/harvard-extension-school-shield.png"
    alt="Harvard University Extension School Shield" height="330" width="287" />
</a>
HTML