Надо, что бы цвет текста первого параграфа был таким, как определен селектором #firstP
.
Нельзя удалять или изменять уже существующие стили, только дополнять их.
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
index.html
<!DOCTYPE html>
<html>
<head>
<title>New York</title>
<style>
body {
margin: 0;
}
p {
color: #14599d;
}
#firstP {
color: blueviolet;
}
</style>
</head>
<body>
<p id="firstP" style="color: red;">New York City, officially the City of New York, historically New Amsterdam, city and port located at the mouth of the Hudson River, southeastern New York state.</p>
<p>It is the largest and most influential American metropolis, encompassing Manhattan and Staten islands.</p>
</body>
</html>