Such a rare font would only display if it is available for the browser on the user's computer. Font names with spaces should also be wrapped in quotes
font-family: "lucida handwriting";
That way it might work on your computer but it still wouldn't work on most others. Fonts should be limited to popular fonts, or at least you should provide alternatives, separated by comma
font-family: "lucida handwriting", "comis sans ms", georgia, serif;
To get that specific font you want you should create a .gif graphic with that font and display that as a logo.
|