I am stuck on the same subject. what code do I use to make the introduction and summary bold? my code is below
p{
font-family:Garamond;
}
p{
font-weight:bold;
}
div{
color:#7AC5CD;
}
}
div div p{
font-weight:bold
}
ul{
color:#000000;
text:underline;
}
both introduction and summary paragraph (p
) are direct children (>
) of body (body
), the synopsis paragraph is a direct child of a div, and you need to target the paragraphs inside the unordered list (ul p
)
body p{
font-weight:bold;
}
p {
font-family:Garamond;
}
div p{
font-weight:bold;
}
div>p{
color:#7AC5CD;
}
li > p{
color:#000000;
text-decoration:underline;
}
2 Likes
okay, some code, what about it?
1 Like
This was super helpful. You addressed the exact issue I was facing.