correspondingly

“The road to hell is paved with adverbs.”

- Stephen King

I have posted here some seamless tiles that I have made. These tiles may be suitable for the background of a website or for trim on stationery. If you see one you would like to use, right click on the image and save it to your hard drive. Please do not link directly to the images on this server; after this site reaches it's bandwidth quota it will shut down, leaving you without. Plus, it is just plain rude.


Backgrounds can be specified in the body tag of your web page:

<body background="yourtile.gif">

Style sheets are much more versatile. The background reference can be added between the <head></head> tags of each page in this format:

<style type="text/css"> <!-- body {background: url(yourtile.gif) repeat ;} --> </style>

One external style sheet can be used to style all your pages. Make a new page named style.css and use this as the content:

body {background: url(yourtile.gif) repeat ;}

Link each page to the stylesheet with a tag placed in the head of each document:

<link rel="stylesheet" type="text/css" href="style.css" />

 

Have fun!