How can I use the new version of Font Awesome in my Webflow website?

TL;DR
  • Get the latest Font Awesome CDN script from their website and add it to Webflow under Project Settings > Custom Code > Head Code.  
  • Use Embed elements in the Webflow Designer to insert icons with the correct class syntax (e.g., fas, far, fab), then publish and verify they display correctly.

To use the new version of Font Awesome in your Webflow site, you need to add the updated CDN link and ensure your icons use the correct syntax.

1. Get the Latest Font Awesome CDN Link

  • Go to the official Font Awesome website: https://fontawesome.com
  • Click Start for Free or Get Started
  • Copy the latest Web CDN URL (it looks like https://kit.fontawesome.com/your-kit-id.js)
  • If needed, register or log in to get a free kit

2. Add the CDN Link to Webflow

  • Go to Project Settings in your Webflow dashboard
  • Open the Custom Code tab
  • Under Head Code, paste the Font Awesome <script> tag
  • Example: <script src="https://kit.fontawesome.com/your-kit-id.js" crossorigin="anonymous"></script>
  • Click Save, then Publish your site

3. Use Icons in Your Webflow Site

  • Open your Webflow Designer
  • Use an Embed element to add icons manually with HTML, e.g.:  

  <i class="fas fa-camera"></i> for a solid camera icon

  • Make sure to use the correct style prefix:
  • fas for solid (<i class="fas fa-star"></i>)
  • far for regular
  • fab for brands
  • You can look these up in the Font Awesome icon gallery

4. Confirm Icon Appearance

  • Publish your Webflow site to preview icons live
  • If they don’t appear:
  • Check that your CDN link is active (try visiting it directly)
  • Make sure you’re using correct icon names and style classes (e.g., fa-solid fa-user in Font Awesome 6)

Summary

To use the latest Font Awesome in Webflow: Get a CDN script from Font Awesomeadd it in Project Settings > Custom Code, and use Embed elements to insert icons with correct class names based on the icon style you want.

Rate this answer

Other Webflow Questions