Do the introduction and summary paragraph look bold? This exercise is a bit tricky, you shouldn’t touch the html code. Your synopsis paragraph doesn’t have a color: #7AC5CD; For the rest it is fine
I am having trouble with lesson 8, “Can you swing it?” I don’t know how to separate the summary paragraph from the introduction paragraph in order to assign a color to only the summary paragraph, since they are both direct children of the . The only way I know how to do this is to assign an ID in HTML; yet, when I did, I got this error message, even though it did help me achieve my goal of coloring only the summary paragraph.
/*Add your CSS below!*/
p {
font-family: Garamond;
}
body p {
font-weight: bold;
}
div > p {
color: #7ac5cd;
}
div ul p {
color: #000000;
text-decoration: underline;
}