jubairusman
jubairusman

Reputation: 45

font packaging in visual studio 2008

I created a website(actually a single HTML Page!)in visual studio 2008 as a part of learning. I used some fonts in it which is not pre-installed in windows XP. So when I run the webpage in another system, all those fonts where not displayed. So is there any way to package fonts with webpage?

Upvotes: 0

Views: 84

Answers (2)

John
John

Reputation: 1327

For serious web development you should look into webfonts (eg. google webfonts, or any other otf webfont that you upload to your server) to keep the compatibility high and the request file size low.

Webfonts are used with the CSS @font-face rule.

http://www.css3.info/preview/web-fonts-with-font-face/

Upvotes: 1

Tom Collins
Tom Collins

Reputation: 4069

Here's a few methods you can try.

http://jonraasch.com/blog/embedding-custom-fonts

Upvotes: 0

Related Questions