Hello! I'm very clueless when it comes to coding. My HTML/CSS knowledge is from long ago and coding was completely different on the sites I used.
I'm attempting to learn, though! Right now I'm trying to put a simple background on my pet page for my Iluvu.
I have my image placed exactly the way I want it, but I want to change the background to the same color as the image, the pink, which is #FABEBE. When I try and add in "background-color: #FABEBE' it breaks the entire page and goes back to the default blue. What should I tweak? I really appreciate any help I can get.
This is the coding I have so far.
<html>
<style>
body {
background-image: url("https://i.pinimg.com/originals/44/9d/40/449d4036eda3650e1886f1a01d482761.png");
background-size: contain;
background-repeat: no-repeat;
background-position: 100% 100%;
</style>
</html>
body {
background-image: url("https://i.pinimg.com/originals/44/9d/40/449d4036eda3650e1886f1a01d482761.png");
background-size: contain;
background-repeat: no-repeat;
background-position: 100% 100%;