HTML5 University

Images

Images are a great way to enhance a web page with media.


Image

The following adds an image to a webpage



<img src="../images/tree.png" alt="A tree">

which would result in:

A tree

The alt Attribute

This attribute is used to add alternative text (hence the attribute name "alt") to a page in case an image cannot be displayed



<img src="../images/tree.png" alt="A tree">

which would result in:

A tree

The title Attribute

This attribute is used to add a descriptive tooltip title to an image when a user hovers over it (title can also be used for links and other HTML elements)



<img src="../images/tree.png" alt="A tree" title="A tree">

which would result in:

A tree