tags:

views:

75

answers:

2

Hi All,

I am trying to embed my custom font in my web site, got a link folder from http://www.fontsquirrel.com/fontface/generator this site after uploading a font on this site, it gives me a css

@font-face { font-family: 'VoltaEFTU-Regular'; src: url('voltaeftu-regular-webfont.eot'); src: local('☺'), url('voltaeftu-regular-webfont.woff') format('woff'), url('voltaeftu-regular-webfont.ttf') format('truetype'), url('voltaeftu-regular-webfont.svg#webfonttKmU3jX8') format('svg'); font-weight: normal; font-style: normal; }

but its not working in my machines how can i embed a font in my web site....

Thanks Mayur Mate

+1  A: 

If I were doing it, I would take a look at how the Google Font API works…

David Wolever
Thnaks Evry one i use a js to convert this font.by using following website.......http://typeface.neocracy.org/usage.html
Mayur
A: 

@font-face code looks correct, but if you want use this font example in <p> you must use font-family: 'VoltaEFTU-Regular'; in this element. Look into generated demo.html file.

dikamilo