CSS Backgrounds
<!DOCTYPE html> <html> <head> <style> body { background: #fff url('bg.jpg') no-repeat center / cover; } </style> </head> <body> <h1>Welcome</h1> <p>Page content.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> body { background: #fff url('bg.jpg') no-repeat center / cover; } </style> </head> <body> <h1>Welcome</h1> <p>Page content.</p> </body> </html>