



|
Description
TILING. When a Web authors uses an image as a page background, the browser repeats it horizontally and vertically in a pattern, thus creating a tiling effect. Source Code <HTML> <HEAD> <TITLE>A Web page with tiling</TITLE> </HEAD> <BODY BACKGROUND = "D:\New Folder\bg26.jpg"> <H2><B><CENTER><FONT COLOR = blue> Web page with tiling </FONT></CENTER></B></H2> <!-- include the image--> <DL> <DT><IMG SRC = "D:\New Folder\001.jpg"> <DD>This is the original image <DT><FONT COLOR = red>Image list item</FONT> <DD>An image may be used as a list item in unordered, ordered, or definition lists. <DT><A HREF = "D:\New Folder\005.jpg"> <IMG SRC = "D:\New Folder\004.jpg" ALT = �A JPG image drawn in Paint� BORDER = 5 ALIGN = center HSPACE = 10 VSPACE = 15 WIDTH = 100 HEIGHT = 125></A> <DD>This is an image hyperlink as a list item. </DL> </BODY> </HTML> Output
|
  