remote image

ClaudeC

New Member
Hi everyone, I need help in retriving an image as a background.
Here is the code I employ which does not work...
and yes the jpg file is in the proper folder...

<html>
<body>

<background=img src="http://www.mysite.com/BulkMailer_folder/Christmas_Tree_background.jpg">

</body>
</html>
Help will be greatly appreciated

ClaudeC :mrgreen:
 

stanbusk

Administrator
Staff member
The right code is:
Code:
<html>
<body background="http://www.mysite.com/BulkMailer_folder/Christmas_Tree_background.jpg">
</body>
</html>
 
Top