[ acky.net logo ]




HTML

http://www.bsdshellz.net/
http://www.bsdshellz.net/

How to Insert Graphics and Images:

Regular Image | Animated Image | Image With Border

 


Regular Image:  > Back > Top

To insert an image into any html document, there
are a number of different attributes that can go in the
image tags. Most of them follow this basic layout
<IMG BORDER="0" WIDTH="###" HEIGHT="###"
SRC="name.gif" ALT="what you want it to say for people without browsers">

ex:

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY>
<IMG BORDER="0" WIDTH="22" HEIGHT="21" SRC="star.gif"  ALT="this is a star">
</BODY>
</HTML>

preview:

this is a star

Animated Image:  > Back > Top

To insert an animated image is just like inserting a regular
image. Follows the same html layout
<IMG BORDER="0" WIDTH="###" HEIGHT="###"
SRC="name.gif" ALT="what you want it to say for people without browsers">

ex:

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY>
<IMG BORDER="0" WIDTH="22" HEIGHT="21" SRC="netscape.gif"  ALT="Get Netscape Now">
</BODY>
</HTML>

preview:

Get Netscape Now

Image With a Border:   > Back > Top

To insert an image with a border into any html
document, use the other tag stated above. Then you
want to enter or edit the BORDER attribute
<IMG BORDER="4" WIDTH="###" HEIGHT="###"
SRC="name.gif" ALT="what you want it to say for people without browsers">

ex:

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY>
<IMG BORDER="4" WIDTH="22" HEIGHT="21" SRC="star.gif"  ALT="this is a star">
</BODY>
</HTML>

preview:

this is a star