Quote:
|
Originally Posted by Kyonoko
thank you for the program, WEFT, but i don't know if i'm doing something wrong or it's because, but i have an angelfire account, does that mean i can't use WEFT with angelfire sites? if not, will someone explain how to put in font family and that kinda stuff, because i look at ti all, and i can't tell waht a fontfamily name is, but that's how it's listed that you put it in in html or css, or whatever it is you use, what now?
|
Perhaps angelfire stops you uploading font files to use with WEFT, entirely possible, so you're stuck using default fonts.
To change the font family stick something like this between the <head> tags of your document
<style type="text/css">
<!--
.textstyle {
font-family: Verdana;
font-size: 10px;
color: #000000;
}
-->
</style>
Then just reference that class using something like
<p class="textstyle">text here</span>
As for the entire font-family list .. I haven't found one unfortunately, but you should be safe using "Arial", "Verdana", "Helvetica", "sans-serif", "Georgia", "Times" (and/or "Times New Roman"), "Courier", "Courier New", "Mono", "Geneva" .. there's probably a few I've missed though.