CSS Backgrounds
<!DOCTYPE html> <html> <head> <style> body { background-image: url('bg.jpg'); background-attachment: fixed; } </style> </head> <body> <h1>Welcome</h1> <p>Scroll to see the fixed background.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> body { background-image: url('bg.jpg'); background-attachment: fixed; } </style> </head> <body> <h1>Welcome</h1> <p>Scroll to see the fixed background.</p> </body> </html>