Posts Tagged "Typekit"

Beyond web-safe fonts with Typekit

Posted by on Feb 28, 2010 in Tutorials | 1 comment

Beyond web-safe fonts with Typekit

Custom fonts are a hot topic in the web design world at the moment because we’ve finally reached the point where all major browsers support their use via standard CSS. Now we can link to fonts of our choosing rather than relying on what is likely to be installed on the user’s computer. You would expect the easiest, and maybe the best, way to get started with custom fonts is to find the typeface you want and then use CSS code similar to this: 1 2 3 4 5 6 7 @font-face { font-family: MyFont; src: url(http://www.mysite.com/MyFont.ttf); } p { font-family:...

Read More