You're viewing docs for v5.15.4, an older version of Font Awesome.

Now with the magic of Kits, you can upload your own icons and use them right alongside official Font Awesome ones! We’ll cover the basics of uploading and using your own icons alongside Font Awesome.

Advertisement

Before You Get Started

Make sure you:

A Kit set to use Pro icons

You’ll need to have a Kit using Pro Icons in order to upload icons

1. Design Your Icon

Are you new to making icons or want to become more familiar with our icon grid, shapes, and approach when designing your own? We've put together icon design guidelines to help your icons look and feel right at home next to Font Awesome icons.

View icon design guidelines

2. Get Your Icon Ready for Upload

Advertisement

We put together an extensive guide to prepping icons to upload (<buzz>and beyond!</buzz>).

View the Icon Prep Recommendations

3. Upload Your Icon to a Kit

Head on over to your Pro Kit of choice to get started. From there, you can upload SVG files in the "Uploaded Icons" section of your Kit. We accept SVGs via drag and drop, file browsing, and even pasting in the SVG directly — for those of you who want to copy straight from Adobe Illustrator or edit raw SVG code.

When uploading icons to a Kit, we’ll do our best to apply our best practices as we process them automagically. However, we can’t catch and solve all the ways that things could go sideways, so be sure to follow the tips for prepping your icons.

Keep these things in mind about uploaded icons:

  • Uploaded icons are tied to a specific Kit and will only work on projects that reference that Kit
  • Uploaded icons are only available for web use right now.
  • You can upload as many icons as your plan allows (in one or across many Kits).
  • Uploaded icons can have the same name as official Font Awesome icons (the unique prefix will set them apart)
Upload Icons to a Kit

Using Uploaded Icons in a Project

Advertisement

Once you’ve uploaded and published your own icons to a Kit, they are immediately ready to use in any project using that Kit!

Uploaded icons have their own unique 'fak' prefix

To avoid collisions and confusion with official Font Awesome icons, icons uploaded to a Kit use the fak prefix.

Style Availability Prefix Example
Solid Free fas <i class="fas fa-basketball-hoop"></i>
Regular Pro Required far <i class="far fa-basketball-hoop"></i>
Light Pro Required fal <i class="fal fa-basketball-hoop"></i>
Duotone Pro Required fad <i class="fad fa-basketball-hoop"></i>
Brands Free fab <i class="fab fa-dribbble"></i>
Kit Uploads Pro Services Required fak <i class="fak fa-basketball-hoop-broken"></i>

Here’s an example of an HTML file referencing both official and uploaded icons from a Kit…

<!doctype html>
  <html>
  <head>
    <!-- Place your Kit's code here -->
    <script src="[YOUR_KIT_CODE]" crossorigin="anonymous"></script>
  </head>

  <body>
    <!-- official solid icons -->
    <i class="fas fa-pennant"></i>
    <i class="fas fa-basketball-hoop"></i>
    <i class="fas fa-basketball-ball"></i>

    <!-- official brand icon -->
    <i class="fab fa-dribbble"></i>

    <!-- (ficticious) uploaded icons: reference icons you've uploaded to your Kit -->
    <i class="fak fa-pennant"></i>
    <i class="fak fa-basketball-hoop-broken"></i>
    <i class="fak fa-shaq-dunking"></i>
    <i class="fak fa-shaq-rapping"></i>
  </body>
</html>

Uploaded icons can use all of the official Font Awesome styling options, including sizing, coloring, rotating, power transforms, masking, and layering. You can also use your uploaded icons as pseudo-elements.

Running into trouble uploading or using your own icons?

Check out our guide on how to troubleshoot common issues.