Is it possible to upload a font to use? It's a webfont but not a google font.

  • unadmin
    Asked on October 22, 2015 at 6:47 PM
  • beril JotForm UI Developer
    Replied on October 23, 2015 at 3:18 AM

    Hi,

    You can use the following sample code and paste it on the Form Designer under CSS tab.

    After that, replace the required values e.g. the font-family name and the source of the font. Or for browser compatibility, you can generate your @font-face codes using this tool https://www.web-font-generator.com/

    Example:

    @font-face {

        font-family: myFirstFont;

        src: url(http://www.yoursite.com/fonts/coolfont_bold.woff);

        font-weight: bold;

    }

    .form-all{

    font-family: 'myFirstFont', sans-serif;

     

     

    }

    Is it possible to upload a font to use? Its a webfont but not a google font Screenshot 20

    If you have any question or issues, please do not hesitate contacting us. We will be glad to assist you.