On Jan 7, 2012, at 4:19 AM, Elli Vizcaino wrote:

> Since I'm also using Candara what do you (or anyone please) suggest is the 
> best way to declare custom fonts w @font-face. Unfortunately Candara doesn't 
> come w the .svg, .eot and .woff versions so I will have to just use .ttf for 
> Candara. 

Is that the same Candara that ships with Windows Vista and Win 7 ? I doubt 
Ascender (the foundry) would be happy with you using it without licensing it.

If it is another -legal- one, you can convert it to .woff :
http://www.fontsquirrel.com/fontface/generator

Once you're that far, add an @font-face block for each face you want to use:
@font-face {
font-family: my-font-1;
src: url(path/to/my-font-1.woff);
font-weight: normal;
}
@font-face {
font-family: my-font-1;
src: url(path/to/my-font-1-bold.woff);
font-weight: bold;
}
etc.

Philippe
--
Philippe Wittenbergh
http://l-c-n.com/






______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to