|
Posted by Andy Dingley on 11/13/07 10:47
On 13 Nov, 07:04, "Mike S." <littleboybl...@yahoo.com> wrote:
> I would like to specify a backup font in an .ini file. How would I go
> For example, I want to use the font called Walshes. But I would like
> to use Arial as a backup font for people who might not have Walshes on
> their computer.
Do it in CSS on your web page, not in any .ini file
<style type="text/css" >
body {
font-family: 'Walshes', 'Arial', sans-serif;
}
</style>
There's a lot more to CSS as well. Read the Lie & Bos book "Cascasding
Style Sheets" for a good tutorial.
Navigation:
[Reply to this message]
|