Home
HTML
HTML Background Image
Example 5: HTML Background Image
Run ❯❯
<!DOCTYPE html> <html> <head> <title>HTML Background Image No Repeat Example</title> </head> <body style="background-image: url('othertrees.jpg'); background-repeat:no-repeat;">> <h1>HTML Background Image No Repeat</h1> <p style="color:red;">Here we notice that though the size of the background image is small, it is not repeating itself.</p> </body> </html>