How do I achieve this:
First letter of paragraph bigger with intent and different font (bold, gothics) in CSS?
try this
p {font-size: 12pt}p:first-letter {color:#ff0000;font-size:xx-large}
Thanks, I found it on the web too :)
Great!