Inseting Graphics using HTML how to insert html graphics

Graphics
What would a web page be without graphics. HTML even allows you to add simple horizontal lines with hr
< img src="name"> Adds an image
• <img src="name" alt="text"> Text if image odes not load or mouse over
• <img src="name" width=?> Width of image
• <img src="name" height=?> Height of image
• <img src="name" align=?> Alignment of image
• <img src="name" border= ?> Border around the image
< hr> Makes a horizontal line
• <hr size=?> height of line
• <hr width=?> width of line
• <hr noshade> line without shadow
Example: <img src="file:///D|/images/banner1.png" alt="alt text for mouse over" width="450" height="120" align="bottom"></dt><hr width="20" size="20">