| Pictures
Adding pictures to your web site is as easy as one line of code. IMG tag is used
to display a picture and SRC is used to defines the source or location of the picture.
Image source example
<IMG SRC="myPagePic.gif">
IMG tag has a number of attributes
HEIGHT=nn Changes the height of the picture
WIDTH=nn Changes the width of the picture
ALIGN=top,bottom,center Aligns the text to begin at the top, bottom or center of the image.
Image source example
<IMG SRC="myPagePic.gif" height="200" width="200"> - this will display image name myPagePic
in the same directory as this file and make both height and width 200. Display an image from the internet Image from internet page can be disployed on your page by typing the image url in the source but the risk of the image beign removed is high. Here is an example of an image from microsoft website: <img src="http://microsoft.com//library/homepage/images/init_enterprise2.gif" height="50"width="70">. Here is the result of the above example:  |