How can I use the new version of Font Awesome in my Webflow website?
TL;DR
Get the latest Font Awesome kit or CDN link from fontawesome.com.
Add the script or link to Webflow’s Project Settings under the Head Code section.
Use icon markup inside Embed elements in Webflow Designer and publish your site.
To use the newest version of Font Awesome in your Webflow project, you need to manually add the Font Awesome kit or link since Webflow doesn't automatically support the latest version.
Sign up or log in to get access to your Font Awesome Kit or download the CDN reference.
If using a kit, copy the Kit embed URL (e.g., https://kit.fontawesome.com/yourKitID.js).
Alternatively, for the free version, copy the CDN link from the “Start Using Free” section (e.g., https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.x.x/css/all.min.css).
2. Add the Font Awesome Link in Webflow
Go to Project Settings in Webflow.
Click the Custom Code tab.
Paste the kit script tag or CDN into the Head Code section (only the script or link, not the full HTML page).
Example script (for a kit): <script src="https://kit.fontawesome.com/yourKitID.js" crossorigin="anonymous"></script>
Example link (for CDN): <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.x.x/css/all.min.css">
3. Apply Font Awesome Icons in Webflow
Open the Webflow Designer.
Add an Embed element where you want the icon.
Insert the appropriate Font Awesome icon markup, such as: <i class="fas fa-user"></i> (for solid icons) or <i class="fab fa-twitter"></i> (for brand icons).
4. Publish Your Website
Click Publish and choose your domain.
Test the icons on the live site to confirm they are rendering correctly.
Summary
To use the new version of Font Awesome in Webflow, embed the latest script or CDN link in your Project Settings under Custom Code, then use icon markup inside Embed elements in the Designer. Be sure to publish changes for them to appear.