View Single Post
Old 09-12-2013, 01:55 PM   #4
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,804
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Those are Licensed fonts. Embedding is expensive.
Since the Font Family names are pretty common, you could depend on the reading system to supply them

All yo may need on the stylesheet, if you choose to a similar looking Open Sourced font is the @font lines declaration for each family that links the Family name to the font file you are using.



I keep the following 'CSS clip'
Code:
@font-face {
font-family: "\1";
font-style: normal;
font-weight: normal;
src:url(../Fonts/\1.ttf);
}
Replace the 2@ '\1' with the appropriate names

You could leave the family name as 'Times New Roman' and link a different (Free) file to SUBSTITUTE that:

@font-face {
font-family: "Times New Roman";
font-style: normal;
font-weight: normal;
src:url(../Fonts/liberation.ttf);
} << Just an example
theducks is offline   Reply With Quote