I use a lot of text, and each line changes the color, for example:
Linea uno // esta es negra linea dos // esta es rosa linea tres // esta es negra linea cuatro// esta es rosa
And so. Maybe they tell me I can do this:
<style>
l1{color: #111;}
l2{color: #ed1e79;}
</style>
<p class="l1">asdasdasdsadasdas</p>
<p class="l2">asdasdasdsadasdas</p>
Or something similar, but I want to change to pink with each line break, and then when I make another one that changes to black.