Put this code in your header. You can modify the colors.
HTML Code:
<style type="text/css">
#color1 {background-color: #FF0000} /* Color of the first line */
#color2 {background-color: #0000FF} /* Color of the other line */
</style>
Then you wrap your text in div tags. Like this
HTML Code:
<div id="color1">Put your text here</div><br /> <br />
<div id="color2">Put other text here</div>
Make sure to add the color1 color2 id to every other line you want colored.
The line breaks are to seperate the text so you can use Paragraphs instead.
-Brady
Bookmarks