Web/Javascript

google web font

aucd29 2013. 9. 26. 21:34
http://code.google.com/intl/ko-KR/apis/webfonts/docs/getting_started.html#Quick_Start

[code]
<html>
<head>
    <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine">
    <style>
     body {
        font-family: 'Tangerine', serif;
        font-size: 48px;
     }
    </style>
</head>
<body>
    <h1>Making the Web Beautiful!</h1>
</body>
</html>
[/code]