Knowledge Base

Browse through our expansive online help documentation.

View Categories

Adding Custom Fonts

If you want to customize or add non-Google web fonts and use a font available on a user’s computer, follow these instructions:

  1. Open the style.css file in your code editor.
  2. Search for the following property: font-family
  3. Enter the font name(s) you wish to use. For example: font-family: Georgia, Helvetica, serif
  4. Save the style.css file and view the changes in your web browser.

For more information on fonts and font families, please visit W3Schools.

Here is the code which you need to modify to add a custom font:

body {
font-family: 'Helvetica Neue', Helvetica, sans-serif;
...
}