I have several paragraphs that I would like to indent, although only the first lines of these paragraphs.
How would I target just the first lines using CSS or HTML?<
In addition to text-indent, you can use the :first-line selector if you wish to apply additional styles.
:first-line
p:first-line { color:red; } p { text-indent:40px; }
http://jsfiddle.net/Madmartigan/d4aCA/1/