I have to make a dropcap for 18 pages. The character on each page will be in the same spot. Whats the easiest way to do this? The characters are in span tags.
I've discussed this with you. You create a class and reuse that class... In the styles sheet .dropcap { // enter things there } For your html file: <span class="dropcap">I</span> etc. - V