Is there any way to add some custom font on website, without using images, flash or some other graphics. For example, I was working on some wedding website, and I was found a lot of nice fonts with that subject, but I'm not find the right way how to add that font on the server and how to include that font with css into html, so is there any chache to do this without graphics?
|
|
This could be done via CSS 2.0 and should work in WebKit based browser. It is not really widely supported, though, I think.
|
||||||||||||
|
|
|
I'm afraid graphics is your only option in this case. |
||
|
|
|
|
Or you could try sIFR (http://http://www.mikeindustries.com/blog/sifr) Edit: I know it uses flash, but only if available. If flash isn't available, it displays the original text in it's original (css) font. |
||
|
|
|
|
FOund an interesting link here: http://www.spoono.com/html/tutorials/tutorial.php?url=embeddingfonts |
||||
|
|
|
I've found that the easiest way to have non-standard fonts on a website is to use sIFR It does involve the use of a Flash object that contains the font, but it degrades nicely to standard text / font if Flash is not installed. The style is set in your CSS and Javascript set's up the flash replacement for your text. Edit: (I still recommend using images for non-standard fonts as sIFR adds time to a project and can require maintenance). |
|||
|
|
|
It looks like it only works in Internet Explorer, but a quick Google search for "html embed fonts" yields http://www.spoono.com/html/tutorials/tutorial.php?id=19 If you want to stay platform-agnostic (and you should!) you'll have to use images, or else just use a standard font. |
||
|
|
|
|
The technique that the W3C has recommended for do this is called "embedding" and is well described by the three articles here: Embedding Fonts. In my limited experiments, I have found this process error-prone and have had limited success in making it function in a multi-browser environment. |
||
|
|
|
|
"Is there any way to add some custom font on website, without using ... flash" Sure, use Silverlight. :P |
||
|
|
|
Safari and Internet Explorer both support the CSS @font-face rule, however they support two different embedded font types. Firefox is planning to support the same type as Apple some time soon. SVG can embed fonts but isn't that widely supported yet (without a plugin). I think the most portable solution I've seen is to use a JavaScript function to replace headings etc. with an image generated and cached on the server with your font of choice -- that way you simply update the text and don't have to stuff around in Photoshop. |
||||
|
|
|
If you use ASP.NET its really easy to generate image based fonts without actually having to install (as in adding to the installed font base) fonts on the server by using:
and then drawing with that font onto a Graphics |
||||||
|
|
|
Did a bit of research and dug up this: http://www.alistapart.com/articles/dynatext/ This technique uses images, but it appears to be "hands free". You write your text, and you let a few automated scripts do automated find-and-replace on the page for you on the fly. Has some limitations, but probably one of the easier choises ( and more browser compatible ) than all the rest I've seen. |
||
|
|
|
|
This article says it works with all 3 major browsers: http://jontangerine.com/log/2008/10/font-face-in-ie-making-web-fonts-work Here is a sample I got working: http://brendanjerwin.github.com/test_font.html More discussion: http://brendanjerwin.github.com/2009/03/03/embedding-fonts.html |
|||
|
|
|
|
Typeface.js and Cufon are two other interesting options. They are Javascript components that render special font data in JSON format (which you can convert from Truetype or OpenType formats on their web sites) via the new element in all newer browsers except IE and via VML in IE. The main problem with both (as of now) is that selecting text does not work or at least works only quite awkwardly. Still, very nice for headlines. Body text... I don't know. And it's surprisingly fast. |
||
|
|
