To add some information about colors, we should change our .css file. This example will make our page white, but our paragraphs will have a yellow background and our header will be blue!
BODY {
background: white;
color: black;
}
H1 {
background: white;
color: blue;;
}
P {
background: yellow;
color: black;
}
Things to notice:
This is a paragraph about me. My name is Rosemary, and I'm 26 years old. I like to program computers, teach, and make webpages for my friends. I also like to play with my two cats, Ra and Nephthys. I live in a house with pink and turquoise paint.
This is another paragraph about me. I have a little brother. I lived in ten different places when I was a kid! My mom and dad live in Boston, Massachusetts. I miss them a lot.
Let's try out some more exciting colors!