Review: The Image Element

A full image element is a combination of resource location, alternative text, title, width, and height:

HTML
<img src="#" alt="" title="" width="" height="" />


<!-- For example... -->
<img src="./images/dogs-in-field.jpeg" alt="An image of dogs laying in a field while the sun sets" title="Dogs in a Sunlit Field" width="1000" height="500" />

An image dogs laying in a field while the sun sets

Note Hover your cursor over the image to see the title="" value!