Presentation is loading. Please wait.

Presentation is loading. Please wait.

HTML Images. The Image Tag and the Src Attribute  In HTML, images are defined with the tag.  In HTML, images are defined with the tag.  The tag is.

Similar presentations


Presentation on theme: "HTML Images. The Image Tag and the Src Attribute  In HTML, images are defined with the tag.  In HTML, images are defined with the tag.  The tag is."— Presentation transcript:

1 HTML Images

2 The Image Tag and the Src Attribute  In HTML, images are defined with the tag.  In HTML, images are defined with the tag.  The tag is empty, which means that it contains attributes only and it has no closing tag.  To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want to display on your page.

3 The syntax of defining an image:  The URL points to the location where the image is stored. An image named "boat.gif" located in the directory "images" on "www.disney.com" has the URL: http://www.disney.com/images/boat.gif.  The browser puts the image where the image tag occurs in the document. If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph.

4 The Alt Attribute  The alt attribute is used to define an "alternate text" for an image. The value of the alt attribute is an author- defined text:    The "alt" attribute tells the reader what he or she is missing on a page if the browser can't load images. The browser will then display the alternate text instead of the image.  It is a good practice to include the "alt" attribute for each image on a page, to improve the display and usefulness of your document for people who have text- only browsers.

5 Image Tags TagDescription <img> Defines an image <map> Defines an image map <area> Defines an area inside an image map

6 Inserting an Image <html><body><p> An image: <img src="constr4.gif" width="144" height="50"> </p><p> A moving image: <img src="hackanm.gif" width="48" height="48"> </p><p> Note that the syntax of inserting a moving image is no different from that of a non-moving image. </p></body></html>

7 Inserting Images from different locations <html><body><p> An image from another folder: <img src="/images/netscape.gif" width="33" height="32"> </p><p> An image from Disney: <img src="http://www.disney.com/images/donald.gif" width="73“ height="68"></p></body></html>

8 Background Image <html> Look: A background image! Look: A background image! Both gif and jpg files can be used as HTML Both gif and jpg files can be used as HTMLbackgrounds.</p> If the image is smaller than the page, the If the image is smaller than the page, the image will repeat itself. image will repeat itself. </body></html>

9 Adjust images to different sizes <html><body><p> <img src="/images/hackanm.gif" width="20" height="20"> </p><p> <img src="/images/hackanm.gif" width="45" height="45"> </p><p> <img src="/images/hackanm.gif" width="70" height="70"> </p><p> You can make a picture larger or smaller changing the values in the "height" and "width" attributes of the img tag. </p></body></html>

10 Make a hyperlink of an image <html><body><p> You can also use an image as a link: <img border="0" src="buttonnext.gif" width="65“ height="38"></a></p></body></html>

11 Create an image map <html><body><p> Click on one of the planets to watch it closer: </p> <img src="/images/planets.gif" width="145" height="126" usemap="#planetmap"> <area shape="rect" coords="0,0,82,126"alt="Sun"href="sun.htm"> <area shape="circle" coords="90,58,3"alt="Mercury"href="mercur.htm"> coords="124,58,8"alt="Venus"href="venus.htm"></map><p> Note: We use both an id and a name attribute in the map tag Note: We use both an id and a name attribute in the map tag because some versions of Netscape don't understand the id attribute. because some versions of Netscape don't understand the id attribute. </body></html>

12 Turn an image into an image map <html><body><p> Move the mouse over the image, and look at the status bar to see how the coordinates change. </p><p> <img src="/images/planets.gif" ismap width="146" height="126"> </a></p></body></html>


Download ppt "HTML Images. The Image Tag and the Src Attribute  In HTML, images are defined with the tag.  In HTML, images are defined with the tag.  The tag is."

Similar presentations


Ads by Google