writing of character
Permalink 1 user found helpful
https://www.concrete5.org/community/forums/5-7-discussion/what-is-th...
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