/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
In the head: <!-- Some special fonts --> /* Single font load*/ <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif"> /* Multiple font load*/ <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Nobile|Droid+Serif|Old+Standard+TT|Droid+Sans"><!-- Some special fonts --> In your CSS: body { font-family: 'Droid Serif', serif; font-size: 48px; }