If you like control, you can host Font Awesome yourself, and you can choose to use SVG + JS described below or Web Fonts + CSS to get icons into your projects.
Advertisement
Remove ads with a Pro plan!
A subscription to a Pro-level plan will remove all third-party advertisements on fontawesome.com.
And of course Pro-level plans come with…
All 26,107 icons in Font Awesome
5 Classic styles of every icon
3 Sharp styles of every icon
A Perpetual License to use Pro
Services and tools to make easy work of using icons
Inside the Font Awesome Download or package, you'll find the files you need. The /js folder contains the core styling, utilities, and icons for all of Font Awesome's families (Classic, Sharp, and Brands) as well as style options (Solid, Regular, Light, Duotone, and Thin).
There's a Free and Pro folder in our Pro download - pick the one that's right for your project and grab the files from there.
Which Files and Folders
What’s in there
/fontawesome6/pro/js
Icons and scripts for each style, or all of them at once.
/fontawesome6/free/js
Just the Free icons and scripts for each style.
Add Font Awesome Files to Your Project
Copy both the fontawesome.js loader and the .js files for the styles you'd like to use into your project's static assets directory (or wherever you prefer to keep front end assets or vendor stuff). Be sure to include the core file - /js/fontawesome.js - as well as the JS files for any individual styles you want to use.
Copy the core and specific style files you need into your project directories
Here's a handy table that shows which file goes with which style:
Link the core fontawesome.js file along with the JS files for whichever styles you want to use into the <head> of each template or page that you plan to add icons to. We recommend referencing the fontawesome.js loader last. Make sure the paths correctly point to where you placed the files!
Here's an example html page with the file links in the <head> and a couple of icons in the content.
Just this once, we recommend letting things go to your head.
Double-Check Your Paths
Make sure the paths of the files you've included in your pages' <head> point to where you've moved all of Font Awesome's files in your project.
Yuss! You’re Ready to Add Icons
Like Anakin said, it’s woooorking! All of our icons are now ready to do your project’s bidding. Learn how to add them to your project and then use their power to bring order and style to your UI!
In the /js folder, you may have noticed a file named all.js. This file contains the core styling and utilities PLUS all of the icons in all the Classic styles in Font Awesome. (The Sharp family is not included in the all.js file - you'll need to the Sharp .js files separately.)
It's a handy file if you'll be using all the icon styles or testing out different styles as you develop your project. But if you're using just a couple of styles, we don't recommend it for production sites since loading all of the icons isn't great for performance.
If you'd like to use the all.js, just copy it into your project’s static assets directory, or wherever you prefer to keep front-end assets or vendor stuff.
Then, add a link to the /your-path-to-fontawesome/js/all.js file into the <head> of each template or page where you want to use Font Awesome icons.
Hosting Your Own Downloaded Kit
Starting with version 6.4, you can now download a Kit and host it yourself just like you do with Font Awesome! To download your Kit, make sure the Kit's version in Settings is set to "Latest 6.x" or if you selected a specific version, it needs to be at least 6.4. Then from the Set Up tab in your Kit, you'll see the options for downloading.
Custom Icons in Downloaded Kits
If you have custom icons in your Kit, they will be included in your Kit download. You'll find these additional files included in the download zip:
Path to the files
What the files do
/css/custom-icons.css
Handles the display of custom icons with Web Fonts
/scss/custom-icons.scss and /less/custom-icons.less
Sass (SCSS) and Less Preprocessor partials that handle the display of custom icons with Web Fonts
These files will work the same as the Font Awesome files and assets. And if you are using all.js or all.css, your custom icons will be included in those, though for performance reasons, we recommend adding just the files you are using in your project.
Here's an example project using Sharp Solid and custom icons from a downloaded Kit:
If your project is using an older version of Font Awesome, we've got you covered with backward compatiiblity. That means you won't have to update any icon names in your project - we'll translate any older version icon names, style syntax, and CSS pseudo-element icon references automatically. Here's how to enable that support for the previous version you need to support:
Version 5 Compatibility
Once loaded, our SVG + JS framework handles translating any Font Awesome 5 icon names, style syntax, and CSS pseudo-element icon references automatically. This is true when using the js/all.js file or using only certain styles.
Version 4 Compatibility
If your project contains Font Awesome 4 icon references, add the v4-shims.js file after any v6 JS files you're including. That file will map v4 icon names to icons in the latest version of Font Awesome.
Here's an example:
<head><!-- Add the v6 core styles and then select the individual styles you need, like Solid and Brands --><scriptdefersrc="/your-path-to-fontawesome/js/fontawesome.js"></script><scriptdefersrc="/your-path-to-fontawesome/js/solid.js"></script><scriptdefersrc="/your-path-to-fontawesome/js/brands.js"></script><!-- support v4 icon references/syntax --><scriptdefersrc="/your-path-to-fontawesome/js/v4-shims.js"></script></head>