something similar to this image but pink enter image description here
>Solution :
Find a small background image of the heart you would like to use and use the background-repeat CSS property to have it repeat across the x and y axes.
Something similar to this should work:
body {
background-image: url("heart-image.png");
background-repeat: repeat;
}