How To Deploy Google Fonts

Author: , April 24th, 2014

The HTML

The CSS

Google Fonts Reference font-weight values: 100: Ultra Light 200: Thin 300: Light 400: Regular 500: Semi Bold 600: Bold 700: Extra Bold 800: Heavy 900: Ultra Heavy

How To Convert Fonts For Cross-Browser Compatibility

Author: , May 31st, 2011

A client wanted specific fonts on their website, and of course, the provided fonts did not work on IE. What a shocker. So I did some research, and found the most amazing site that does easy font conversion for free. Drumroll, please… It is called Font Squirrel, and all you need to do is upload […]

How To Solve Font-Related Crashes On MacOSX

Author: , May 24th, 2011

Open Font Book Select All Fonts File » Validate Fonts Delete any problem fonts. Reboot

How To Make Fonts Bigger On The iPhone For Basic Apps

Author: , May 11th, 2011

To make the text larger in Calendar, Contacts, Mail, Messages and Notes, go to: Settings > General > Accessibility > Large Text and choose the size you like!

How To Include Fonts In A Web Page

Author: , August 22nd, 2010

In your stylesheet: [code] @font-face { font-family: "Avenir LT 45 Book"; src: url(‘/fonts/avenir.ttf’); } body { color: #000000; font-family: "Avenir LT 45 Book",verdana,arial,sans-serif; font-size: 14px; } [/code]