writing of character

Permalink 1 user found helpful
how to add a new writing of character font in the editor other than the one that exists because I want to add one of my favorite font can someone help me

 
jordif replied on at Permalink Reply
jordif
What font are you trying to use? Is it a Google Font?
davpyth replied on at Permalink Reply
no it not a google font the font name that glin sang
jordif replied on at Permalink Reply
jordif
davpyth replied on at Permalink Reply
thank you for your help I visit the links
davpyth replied on at Permalink Reply
hello jordi how to install google font character are becaufe the other I unable to install it
jordif replied on at Permalink Reply
jordif
Hi,

here is a quick way to embed a Google Font:


- Go to Google Fonts:http://www.google.com/fonts

- Select the font you want to use and click on the Quick Use button. In steps 1 and 2, change the settings if necessary. In step 3 ("Add this code to your website"), select the second tab (@import) and copy the code to the clipboard.

- Go to your concrete5 webiste. In the theme customizer, under "Advanced", you'll find the "Custom CSS" option. Click on it and paste the code there. Make sure you paste it at the top of the text area. Then add the CSS rule to use the font. For example, the complete code to use "Oswald" for the "Heading 4" tag (<h4>) should look like this:

@import url(http://fonts.googleapis.com/css?family=Oswald);
h4 {
    font-family: 'Oswald';
}


If you want to use the font with all headings, use this code instead:

@import url(http://fonts.googleapis.com/css?family=Oswald);
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald';
}


Or if you want to use the font for all paragraphs:

@import url(http://fonts.googleapis.com/css?family=Oswald);
p {
    font-family: 'Oswald';
}


Hope this helps,

Jordi