Make Quicksand the default font (for articles and pages)

Post Reply
niceguy
Jr. Bludit
Posts: 7
Joined: Thu Oct 29, 2020 1:51 pm

Hi!

I would like to use this font in my blog:

https://fonts.google.com/specimen/Quicksand

Where do I must to paste the code from Google Fonts ?

(The theme I use is "blog X")
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

You can use the plugin HTML Code.

Add the link to the font to the field Head.

Add to the same field the CSS rule for the font:

Code: Select all

<style>

body {
   font-family: 'Quicksand', sans-serif;
}

</style>
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
niceguy
Jr. Bludit
Posts: 7
Joined: Thu Oct 29, 2020 1:51 pm

Edi, you are the true Nice Guy !!!

Thank you one more time!

Alexandre.

Edi wrote: Thu Oct 29, 2020 7:46 pm You can use the plugin HTML Code.

Add the link to the font to the field Head.

Add to the same field the CSS rule for the font:

Code: Select all

<style>

body {
   font-family: 'Quicksand', sans-serif;
}

</style>
Post Reply