Use custom Google Font in your form

While Convert Forms offers a plethora of widely used Google Fonts to choose from and use as your main form font, you may still want to use a specific font from Google Fonts that we don't yet support. In this guide, I'll show you how to use any Google Font and load it on your Convert Forms form.

Step 1: Pick your font on Google Font

Head over to Google Fonts and search for the font you want to use. For this example, we'll use the font Outfit.

Once you've selected the Google Font, click on the "Get Font" button on the top right of the page.

custom google font 1

Next, click on the "Get embed code" button.

custom google font 2

Select the Font URL from the "Embed code in the <head> of your html" area, as seen below.

custom google font 3

Step 2: Load the font into Convert Forms

Next step is to edit your form and go to Behavior > PHP Scripts > Form Prepare so we can load the font and be able to use it in the form.

Add the PHP snippet:

$doc->addStylesheet('https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap');

Replace the Google Font URL with the URL you copied from the previous step.

custom google font 4

Step 3: Apply the font in your form

Finally, we need to apply the font in the form. To do so, navigate to Design > Advanced > Custom CSS area and add:

#cf_123 {
  --font: "Outfit", sans-serif;
}
  • Replace 123 with your Form ID.
  • Replace "Outfit" with your Google Font name.

custom google font 5

Last updated on Oct 28th 2025 09:10