Google’s New Web font Service
In the regular progress of google, it announces a new service in which one can save their site’s bandwidth an make beautification of their typography. In this service, you can make use of very beautiful fonts.
In two easy steps one can use the fonts.
Step1.
To use Yanone Kaffeesatz font add these line in your header tag of your site
<link href=’http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz’ rel=’stylesheet’ type=’text/css’>
Step2
In your CSS file just call the font and this is complete
body { font-family: ’Yanone Kaffeesatz’, serif; font-size: 100px; }
Total Project
- <!DOCTYPE html>
- <html lang=”en”>
- <head>
- <meta charset=”utf-8″>
- <title>untitled</title>
- <link href=’http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz’ rel=’stylesheet’ type=’text/css’>
- <style>
- body { font-family: ’Yanone Kaffeesatz’, serif; font-size: 100px; }
- </style>
- </head>
- <body>
- Hello World
- </body>
- </html>
The output will the same as follow

You can also see the video for detail

