Google Font

Google erlaubt das einfache Einbinden von weiteren Schriftarten

Das Einbinden der Schriftart funktioniert so einfach, wie man es von Google gewohnt ist. Einfach als Stylesheet direkt eine Google CSS inkl. Schriftfamilie einbinden. Dannach kann man den Namen der Schrift im eigenen CSS z.B. in de font-family zuweisen.

Wie das Ganze funktioniert:

https://fonts.google.com/

Beispiel

    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Cuprum">
    <style>
    body {
    font-family: Cuprum, serif;
    font-size: 20px;
    }
    </style>
    </head>
    <body>
    <h1>Das ist sie nun, die neue Schriftart!</h1>
    </body>
    </html>