CSS Backgrounds
<!DOCTYPE html> <html> <head> <style> body { background-image: url('bg.jpg'); } </style> </head> <body> <h1>Welcome</h1> <p>The page background uses an image.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> body { background-image: url('bg.jpg'); } </style> </head> <body> <h1>Welcome</h1> <p>The page background uses an image.</p> </body> </html>