To learn how to do it simple follow up:
Choosing a Font Style and Embedding the Font
- Go To Google Font Previewer
- Choose Your selected font style and then copy the first line of code as shown below,
This line will look similar to the one below,
<link href=http://fonts.googleapis.com/css?family=Aclonica:regularrel="stylesheet" type="text/css" >
You will have to add a back slash "/" at the end of the above link like this,
<link href=http://fonts.googleapis.com/css?family=Aclonica:regularrel="stylesheet" type="text/css" />
3. Go To Blogger > Design > Edit HTML4. Backup your template
5. Search For </head> and just above it paste the code you copied from Font previewer like this,
<link href=http://fonts.googleapis.com/css?family=Aclonica:regularrel="stylesheet" type="text/css" />
</head>
6. Save your template and follow the next part of the tutorial.
After you have embedded the font in your templates, you will have to apply the effects to selected areas of your blog like Header Title, Post title and Sidebar. To do that follow the steps below,
How To Style Post Titles in Blogger?
- Go To Blogger > Design > Edit HTML
- Backup your template
- Search For the following code in blue,
.Post h3 {4. Inside the above code you will find this line or a similar one,
....
...
.... }
.Post h3 {5. Simply replace it with the Second Line which you can get from the font previewer
....
font-family: arial, verdana;
.... }
Like this,
.Post h3 {6. Hit Save and you are done!
....
font-family: 'Aclonica', serif;
.... }
7. Preview your blog to see your Post titles appearing beautifully!
How To Style Sidebar Titles in Blogger?
All steps are same as we discussed for post titles. Here instead of searching for .post h3, search for,.Sidebar h2{and replace the font-family with your Second Line of Code like this,
....
...
.... }
.Sidebar h2 {Save your template to see the effect.
....
font-family: 'Aclonica', serif;
.... }
Ps: Since the CSS coding for each template may differ so feel free to ask me for any help if needed. Have Fun!