Question:
How can I refer to a single word in a text to edit its styles separately?
Answer:
To do this, use the span
tag, which is why it was invented:
div{
color: green;
}
span{
color: red;
}
<div>Вот <span>это</span> предложение!</div>