Цвет текста во всех параграфах после #secondP
должен быть #01BBE2
.
Не добавляй параграфам ни новый классов, ни идентификаторов, ни строчных стилей.
Используй общий родственный комбинатор.
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
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>