1 min read
Google Font Directory

Google Font Directory — каталог, в котором Google в данный момент хранит 18 open source шрифтов, которые можно использовать на сайтах, при помощи Google Font API; добавляем одну строку в head, например, для шрифта Droid Sans:

<link href='http://fonts.googleapis.com/css?family=**Droid+Sans** ‘ rel=’stylesheet’ type=’text/css’ />

и затем указываем шрифт в стиле css``:

h1 { font-family: 'Droid Sans', arial, sans-serif; }

Читаем подробнее в блоге Google code blog.