Posts: 2,536
Location: Western Maryland
|
For this syntax to work, the image file background.jpg must be in the same directory as the HTML file you are writing which references it. Otherwise, you need to provide a relative path to it.
If your HTML file is in a directory and that directory contains another directory (let's call it 'images') which itself contains the image file, then you would need a relative path reference that looks like this:
HTML Code:
<table background="images/background.jpg">
__________________
—Kyrnt
|