The text color in all paragraphs after #secondP
must be #01BBE2
.
Do not add new classes, identifiers, or inline styles to paragraphs.
Use a common sibling combinator.
This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task
index.html
<!DOCTYPE html>
<html>
<head>
<title>San Francisco</title>
<style>
body {
margin: 0;
}
p {
color: #14599d;
}
#secondP {
color: #8a2be2;
}
</style>
</head>
<body>
<p>San Francisco, city and port, coextensive with San Francisco county, northern California, U.S., located on a
peninsula between the Pacific Ocean and San Francisco Bay.</p>
<p id="secondP">t is a cultural and financial centre of the western United States</p>
<p> Area 46 square miles</p>
<p>San Francisco holds a secure place in the United Statesβ romantic dream of itself</p>
<p> According to the dream, San Franciscans are sophisticates whose lives hold full measures of such civilized pleasures
as music, art, and good food.</p>
</body>
</html>