How can we use font awesome fonts?

how can we use font awesome fonts?

Dear @coresoul,

You can apply a custom font by appending the HTML link:

  1. Add this code to the JavaScript Editor:

     var imported = document.createElement('link');
     imported.href = "https://fonts.googleapis.com/css?family=Major+Mono+Display" //for example
     imported.rel = "stylesheet"
     document.head.appendChild(imported);
    
  2. Add this CSS rule to the CSS Editor:

     .fd-form {
         font-family: 'Major Mono Display', monospace; /* for example */
     }