The stylesheet with all the defintions is a seperate file from the pages; it's here for the FQF and here for my fic page. You can alternately include the style information in the header of the document, but that's a bit of a pain in the ass, especially when you suddenly discover you need to change something.
You don't have to define every tag; if you don't specify anything, the brower will display it as normal for HTML. If you look at the sheets above, I don't define <i> in the sheet, so the brower defaults to italics. If I added a line
no subject
Date: 2004-04-22 08:41 am (UTC)You don't have to define every tag; if you don't specify anything, the brower will display it as normal for HTML. If you look at the sheets above, I don't define <i> in the sheet, so the brower defaults to italics. If I added a line
i { font-weight: bold; font-style: normal; }
and I typed
<i>Italics</i>
It would display as
Italics
not
Italics.
Trippy, n'est-ce pas?