Is it possible to make the text of words of different colors in one line in html? For example. 1 word in one color, and the second - in another.

    1 answer 1

    http://jsfiddle.net/6fRsA/

    HTML:

    <p>Первое слово <span>второе слово</span></p> 

    CSS:

     p{ color: #f00; } p span{ color: #00f; }