



|
Description
An HTML that uses two images in a Web page. The first page is as is, and scale the second one down by 50%. Source Code <HTML> <HEAD> <TITLE>A Web page with scaled images</TITLE> </HEAD> <BODY> <H2><B><CENTER><FONT COLOR = blue> Web page with a scaled images </FONT></CENTER></B></H2> <!-- include the first image without scaling--> <IMG SRC ="D:\New Folder\012.jpg" ALT = �A JPG image without scaling� BORDER = 5 ALIGN = center HSPACE = 10 VSPACE = 15 WIDTH = 225 HEIGHT = 200> Text aligned middle<BR> This text is place 15 pixels<BR> below the image<BR> <!-- include the second image with 50% scaling--> <IMG SRC = "D:\New Folder\012.jpg" ALT = �A jpg image with 50% scaling� BORDER = 5 ALIGN = center HSPACE = 10 VSPACE = 15 WIDTH = 225 HEIGHT = 200> Text aligned middle<BR> This text is place 15 pixels<BR> below the image<BR> </BODY> </HTML> Output
|
  