HTM39


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

      Furnishing your Web page with design doesn�t end in typography, it only starts from there. Another good way of bestowing it with more attractiveness is thru the use of images or pictures. You can insert a picture in your Web page through the empty tag <IMG>.


..Back to the top..



OUTPUT:


HTM39. A Web page with images

Web page with a simple image

“A Text aligned middle
This text is place 15 pixels
below the image


..Back to the top..



SOURCE CODE:



<HTML>
<HEAD>
<TITLE>A Web page with images</TITLE>
</HEAD>
<BODY>
<H2><B><CENTER><FONT COLOR = �blue�>
Web page with a simple image
</FONT></CENTER></B></H2>
<!-- include the image-->
<IMG SRC = l.jpg ALT = �A GIF image drawn in Paint� BORDER = 5 ALIGN = center HSPACE = 10 VSPACE = 15>
Text aligned middle<BR>
This text is place 15 pixels<BR>
below the image<BR>
</BODY>
</HTML>


..Back to the top..