Getting Started
To use a custom typeface (a font that's not a standard system font) in your Developer Portal, you first need to load the custom stylesheet for the typeface using the portal.loadCSS() method.
For example, let's load the Open Sans typeface (HTTPS://FONTS.GOOGLE.COM/SPECIMEN/OPEN+SANS) from the Google Font Repository:
// Load Open Sans portal.loadCSS('https://fonts.googleapis.com/css?family=Open+Sans');Then, in your CSS, add your custom typeface as the font-family. To use the same font everywhere, you can add it to the body.
body { font-family: "Open Sans", sans-serif; }
Copyright © 2022. Cloud Software Group, Inc. All Rights Reserved.