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

Copyright © David Heitmeyer