Add alt Attribute to an image in HTML and CSS

Description

The following code shows how to add alt Attribute to an image.

Example


<!--  w w  w  . j  a  va 2s  . c  o m-->
<!DOCTYPE HTML>
<html>
<body>
<p>
An image:
<img src="ImageCannotBeFound.gif"
alt="I hard coded a missing image here."
width="200"
height="50" />
</p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Add alt Attribute to an image in HTML and CSS