I have an existing site built w/Frontpage. I want to incorporate CSS. Do I need to start from scratch?
I have an existing site built w/Frontpage. I want to incorporate CSS. Do I need to start from scratch?
No. You can typically do a find/replace on HTML tags to incorporate CSS. For instance:
FIND: <p><font face="arial" size="2" color="red">
REPLACE: <p class="red">
FIND: </font></p>
REPLACE: </p>
and do this with all of your fonts, tables, divs, etc.