(XHTML)
The IMG element embeds an image at the location of the element's definition. The src attribute, which is required, gives the URL of the image to embed. The alt attribute, which is required, must contain a short description of the image. The width and height attributes, although not required by W3C standards, are required by the AHS Web Design class standards.
Since the img element is not a block level element, it must be contained within a block level element, such as P (paragraph). Here is an example,
<p>Go<br /><img src="images/raider_logo.gif" width="143" height="100" alt="Raider Logo" /><br />Red Raiders!</p>
Here is how it looks in a browser,
Go
Red Raiders!