 |


|
 |
 |
Graphics
<img src="name">
Inserts an image.
You can insert an image from a different location by including the URL
in front.
ex. <img src="graphic.gif">
or <img src="http://www.yahoo.com/graphic.gif">
Attributes:
<img src="name"
align=?>: aligns an image left, right, center, bottom, top,
or middle
<img src="name"
border=?>: sets the size of the border around an image. Set
this attribute to "0" if you don't want a border around the
image when you turn it into a link.
<img src="name"
alt=?>: tells those who do not view images on their webpages
(such as some ADA browsers) what the image was supposed to be. For those
who do view the images, the value of this attribute appears in a yellow
box when the mouse hoovers over the image.
ex. <img src="rabbit.gif"
alt="Rabbit">
<hr>
Inserts a horizontal
rule.
Attributes:
<hr size=?>:
sets the size (height) of the line, either in pixels or as a percentage
of the screen.
<hr width=?>:
sets the width of the line, either in pixels or as a percentage of the
screen.
<hr noshade>:
removes shading from the line, making it a simple solid line.
|