How can I use a specific font for my website

Possible Duplicate:
How to add a custom font to the site?

I am working on a new project. On this website, the client used the font (Volta Regular). Please tell me how I can use this. This font is missing from my computer. How can I use it? This problem will come with the whole machine. How can I customize it using CSS?

+2


a source to share


5 answers


You will need the downloadable fonts described in this AListApart article (scroll down to the section titled "Web Fonts: The Code You Will Use"). But be careful. Browser support is still patchy, so you want to provide web a safe default font for backward compatibility.



+1


a source


You have several options, take a look @font-face

, a CSS based cufon

solution and a JavaScript solution.



+1


a source


First download the specific font to net and past to your project folder.

For css use this link:

http://stackoverflow.com/questions/107936/how-to-add-some-non-standard-font-to-website

      

0


a source


Check out fontsquirrel.com

They have ready-made @ font-face font kits, as well as a generator that will let you provide your own font (just make sure it's licensed for web use).

0


a source


If it's the font I'm thinking of: I'm not a lawyer and this is not a copyright overflow, but the font isn't free and the license seems pretty clear that @ font-face embedding is not okay.

In this case, either 1) buy a font and make images with it (if it's just for the logo / title); or 2) tell the client that the font is not suitable for web use and ask them to choose something more generic (or at least legally nested).

0


a source







All Articles