GOOGLE WEB FONT

HTML DE EJEMPLO
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine|Monoton">
<style>
body { font-family: 'Tangerine', serif; font-size: 36px; }
h1 { text-shadow: 4px 4px 4px #aaa; }
.f1 { font-family: 'Monoton', serif; font-size: 24px; }
</style>
</head>
<body>
<h1>GOOGLE WEB FONT</h1>
<div class="f1">HTML DE EJEMPLO</div>
</body>
</html>