HTML Basics

Previous Next

Basic Tags

<IMG>

The Image tag, much like the Link tag, does nothing for us. We need to add some attributes to make it function.

SRC Attribute

The SRC attribute is similar to the HREF attribute in that it designates the name of the file that contains the image. The format of the <IMG> tag now becomes:

 	<IMG SRC="Graphic's URL"> 

For example:

	<IMG SRC="http://www.library.com/images/trees.gif">
Or an image from the same directory as this document as shown below :
	<IMG SRC="as4001.gif">

Previous Next

Agenda

HTM150