HTML GRAPHIC TAGS
|
GRAPHIC
TAGS |
DESCRIPTION |
EXAMPLES |
| <img src="pic.gif"> |
Inserts the picture file "pic.gif"into
your page.Normally used with .gif or .jpg files. |
Click
for example |
| <img src="pic.gif"align=left> |
Aligns the image according to the specified value.
|
<img src="cat_pic.gif" align= left>
<img src="dog_pic.gif" align= right>
<img src="rat_pic.gif" align= center>
<img src="cow_pic.gif" align= top>
<img src="pig_pic.gif" align= bottom>
<img src="hen_pic.gif" align= middle> |
| <img src="pic.gif"border=1> |
Sets the width of the border surrounding an image.Set
ti "0"if no borderis required. |
<img src="cat_pic.gif" border= 0>
<img src="dog_pic.gif" border= 3>
<img src="rat_pic.gif" align= 10> |
| <hr> |
Creates a horizontal rule... |
|
| <hr size=1> |
Sets the thickness of the rule in pixels |
|
| <hr width=50%> |
Sets the width of the rule in either pixels or by
percentage. |
|
| <hr noshade> |
Creates a rule without a shadow. |
|