HTML CSS examples for CSS Property:background-image
By default background-repeat property will have repeat value.
<html> <head> <style> body {<!--from ww w .j a v a2 s. co m--> background-image: url("https://www.java2s.com/style/demo/Opera.png"); background-repeat: repeat; } </style> </head> <body> <p>Tutorials point</p> </body> </html>