Lynn K. answered 01/02/20
I'll help you to become the best coder!! You can do this!!
You need to put the section you want the color changed to in a div. For example, I had a couple of paragraphs I wanted different background colors. I would do this:
<header></header>
<div class= 'paragraph-one'>
<p>fkgrogjffnvjfkan;vkfvkfdnvjfdvnfdka</>
</div>
<div class='paragraph-two'>
<p>jfghjrewghjrwngjewk</>
</div>
CSS
.paragraph-one{
background-color: 'blue'
}
.paragraph-two{
background-color: 'red'
}