Font embedding is the inclusion of font files within an electronic document. This is possible with several file formats including Portable Document Format (PDF) and Microsoft Word (DOC).
Questions tagged [embedded-fonts]
188 questions
0
votes
1 answer
Ie8 not rendering embedded fonts to dynamic divs
@font-face {
font-family: "England Hand";
src: url("fonts/englandhand.eot?#iefix") format("embedded-opentype"),url("fonts/englandhand.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
I have the above as the…

Bhumi Singhal
- 8,063
- 10
- 50
- 76
0
votes
1 answer
How to buy custom fonts to use in a client's project
I have always wondering about paying for Font services such as TypeKit to be able to use some of the awesome fonts they offer but I’m also wondering how to manage this fee, I’m talking more for a client’s web site, what do you tell them “you need to…

fs_tigre
- 10,650
- 13
- 73
- 146
0
votes
2 answers
AS3: Embed font two different fonts with same name
I'm embedding a font in AS3 with the following command:
[Embed(source="../font/font1.swf", fontName = "FontName1", fontWeight = "bold" )]
private var myEmbeddedFont:Class;
var _tf: TextFormat;
_tf = new TextFormat();
_tf.color = 0x000000;
_tf.size…

vigri
- 475
- 1
- 5
- 16
0
votes
1 answer
@font-face doesn't doesn't work on copy of site
I have used a custom font in my @font-face tags and it works successfully in my ASP.NET 3.5 website running on a local IIS site (localhost) on all (Windows) browsers. When I copy the site to another IIS site on the same server using a different port…

Gary O. Stenstrom
- 2,284
- 9
- 38
- 59
-1
votes
2 answers
How to proper load custom fonts on website
I'm declaring custom font inside css file, using @import and assigning them to elements:
I do not have access to the head tag of the site, I'm doing it in the body...
this does not work.., My question does custom font must be declared in the head…

marb
- 53
- 1
- 12
-1
votes
3 answers
yakov thin fonts incorrect display
I have embedded Yakov thin fonts with CSS via @font-face but the fonts are are so different from the original ones.
What could be the reason for this? Here is my code
@font-face
{
font-family:'Yakovthin';
src:…

Karine
- 587
- 1
- 11
- 24
-2
votes
2 answers
@font-face not recognized
Ok I have my site up so far but the two fonts I used are not showing up. I transferred the fonts and put them in the same folder as my webpages. I also used @font-face in css (styless.css). I'm not sure where I went wrong.
Website:…

user1165861
- 829
- 2
- 9
- 14
-2
votes
0 answers
Sending Font File with a Webpage
Possible Duplicate:
Fonts on the Web
Non-Standard fonts in web?
Is it possible to send a font with a HTML page like I send external CSS, Javascript files & images?
I use a unique font & it would be best if I could just send a font file for the…

sazr
- 24,984
- 66
- 194
- 362