Images within a document

  We can insert images like GIF, JPG, etc. within a document.

  How to input the images

    <img   align=[top|middle|bottom|left|right]
width=[pixels|percentage]
height=[pixels|percentage]
border=pixels
vspace=pixels
hspace=pixels
src=URL
alt=text>
 align

  top, middle, bottom

  Define the image position with the text around the image

  left, right

 Image is defined as Left or Right location of the text with it.

  width and height

  Modifying the size of the image

  The resolution will be lower upon bigger size expression for the actual size of the image.

  border

 Thickness of border line surround the image.

  vspace¿Í hspace

 Size of vertical and horizental spaces

  src

 Image file location

  alt

 Showing a text instead of the image when a browser does not support images.

  Effects of Align control

  Expressed in 'align=bottom' for <img align=bottom src=./html15-2.gif>.
        This is an expression with 'align=bottom' for .

  Expressed in 'align=middle' for <img align=middle src=./html15-2.gif>.
        This is an expression with 'align=middle' for .

  Expressed in 'align=top' for <img align=top src=./html15-2.gif>.
        This is an expression with 'align=top' for .

  Expressed in 'align=left' for <img align=left src=./html15-2.gif>.

        This is an expression with 'align=left' for .

  Expressed in 'align=right' for <img align=right src=./html15-2.gif>.

        This is an expression with 'align=right' for .