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?<
Very simple using css:
p { text-indent:10px; }
Will create an indentation of 10 pixels in every paragraph.