HomeBlogAbout Me

Fontawesome Cheatsheet



We Create Visually Stunning User Friendly Responsive Websites. Anthonykozak / FontAwesome 5 Pro JSON Cheatsheet. Last active Dec 3, 2019. Star 1 Fork 0; Star Code Revisions 3 Stars 1. What would you like to do?

  1. Font Awesome 4.7.0 Cheat Sheet
  2. Font Awesome Cheatsheet Pdf

Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
Please see https://fontawesome.com/how-to-use/on-the-web/setup/getting-started?using=web-fonts-with-css for help using the CSS version of Font Awesome.
Please note that this package is not maintained by the Font Awesome team.

For projects that support PackageReference, copy this XML node into the project file to reference the package.
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Release Notes

Updates to Font Awesome release 5.15.0.
Font Awesome 5 is a major update from Font Awesome 4. You will likely need to adjust your fa classes. See https://fontawesome.com/how-to-use/upgrading-from-4
Swift charisma 560 4 berth 2003. Please note that this package is not maintained by the Font Awesome team.

Dependencies

This package has no dependencies.

Used By

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Font.Awesome:

PackageDownloads
xdevelopers.web

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Font.Awesome:

RepositoryStars
NonFactors/MVC5.Template
ASP.NET MVC 5 project starter template

Version History

VersionDownloadsLast updated
5.15.0 2,159 9/30/2020
5.14.0.1 2,389 9/8/2020
5.14.0 737 9/3/2020
5.13.0 30,520 3/25/2020
5.12.0 31,029 12/12/2019
5.11.2 12,920 10/25/2019
5.11.1 13,946 9/22/2019
5.10.0 20,299 7/31/2019
5.9.0 33,323 6/8/2019
5.8.2 19,520 5/9/2019
5.8.1 17,006 3/26/2019
5.7.2 25,018 2/13/2019
5.7.1 3,849 2/2/2019
5.7.0 1,454 1/30/2019
5.6.3 10,754 12/22/2018
5.5.0.1-alpha-3 941 11/13/2018
5.5.0.1-alpha-2 259 11/10/2018
5.5.0 19,969 11/4/2018
5.4.2 438 11/4/2018
5.4.1 12,121 10/13/2018
5.3.1 26,316 8/31/2018
5.2.0 10,960 7/28/2018
5.1.0 14,551 6/21/2018
5.0.13 31,459 5/10/2018
5.0.12 1,195 5/8/2018
5.0.11 1,695 5/3/2018
5.0.10 5,963 4/16/2018
5.0.9.1 2,732 4/2/2018
5.0.9 956 3/31/2018
5.0.2 21,159 12/28/2017
4.7.0 88,770 10/28/2016
4.6.3 56,563 5/14/2016
4.6.2 2,002 5/10/2016
4.6.1 7,403 4/15/2016
4.6.0 3,431 4/12/2016
4.5.0 58,090 11/24/2015
4.4.0 17,773 8/1/2015
4.3.0.1 25,996 2/5/2015
Show more

Font Awesome 5

Font Awesome 5 has a PRO edition with 7842 icons, and a FREE edition with 1588 icons. This tutorial will concentrate on the FREE edition.

To use the Free Font Awesome 5 icons, you can choose to download the Font Awesome library, or you can sign up for an account at Font Awesome, and get a code (called KIT CODE) to use when you add Font Awesome to your web page.

We prefer the KIT CODE approach. Once you get the code you can start using Font Awesome on your web pages by including only one line of HTML code:

<script src='https://kit.fontawesome.com/yourcode.js'></script>

Example

https://truenload235.weebly.com/what-format-thumb-drive-for-mac-and-pc.html. We got the code a076d05399 and by inserting the script tag, with the code, we can start using Font Awesome:

<!DOCTYPE html>
<html>
<head>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
</head>
<body>
<i></i>
</body>
</html>

Results in:

Try It Yourself »

Note: No downloading or installation is required!

Get Your Own KIT CODE

Sign up and get your own code for free at:

New in Font Awesome 5

Cheatsheet

New in Font Awesome 5 is the fas prefix, Font Awesome 4 uses fa.

The s in fas stands for solid, and some icons also have a regular mode, specified by using the prefix far:

Example

<i></i>
<i></i>
Cheatsheet

Results in: Houseparty for mac.

Try It Yourself »

Font Awesome is designed to be used with inline elements. The <i> and <span> elements are widely used for icons.

Also note that if you change the font-size or color of the icon's container, the icon changes. Same things goes for shadow, and anything else that gets inherited using CSS.

Example

<i></i>
<i></i>

Results in:

Try It Yourself »

The fa-xs, fa-sm, fa-lg, fa-2x, fa-3x, fa-4x, fa-5x, fa-6x, fa-7x, fa-8x, fa-9x, or fa-10x classes are used to adjust the icon sizes relative to their container.

Example

The following code:

<i></i>
<i></i>
<i></i>
<i></i>
<i></i>
<i></i>

Results in:

Try It Yourself »

The fa-ul and fa-li classes are used to replace default bullets in unordered lists.

Example

The following code:

<ul>
<li><span><i></i></span>List Item</li>
<li><span><i></i></span>List Item</li>
<li><span><i></i></span>List Item</li>
</ul>

Results in:

Try It Yourself »

The fa-spin class gets any icon to rotate, and the fa-pulse class gets any icon to rotate with 8 steps.

Example

The following code:

<i></i>
<i></i>
<i></i>
<i></i>
<i></i>
<i></i>

Results in:

Try It Yourself »

Note: IE8 and IE9 do not support CSS3 animations.

The fa-rotate-* and fa-flip-* classes are used to rotate and flip icons.

Example

The following code:

<i></i>
<i></i>
<i></i>
<i></i>
<i></i>
<i></i>

Results in:

Try It Yourself »

To stack multiple icons, use the fa-stack class on the parent, the fa-stack-1x class for the regularly sized icon, and fa-stack-2x for the larger icon.

The fa-inverse class can be used as an alternative icon color. You can also add larger icon classes to the parent to further control the sizing.

Example

The following code:

<span>
<i></i>
<i></i>
</span>
fa-twitter (inverse) on fa-circle (solid)<br>
<span>
<i></i>
<i></i>
</span>
fa-twitter on fa-circle (regular)<br>
<span>
<i></i>
<i></i>
</span>
fa-ban on fa-camera

Results in:

Try It Yourself »

Just like letters and other characters, icons can have different widths, and if you need to vertically align icons like in a list or a menu, this can be a problem.

The fa-fw class is used to set icons at a fixed width. Affinity designer beta 1 7 0 8 download free.

Example

<p>Fixed Width:</p>
<div><i></i> Icon 1</div>
<div><i></i> Icon 2</div>
<div><i></i> Icon 3</div>
<p>Without Fixed Width:</p>
<div><i></i> Icon 1</div>
<div><i></i> Icon 2</div>
<div><i></i> Icon 3</div>

Results in:


Font Awesome 4.7.0 Cheat Sheet

Try It Yourself »

The fa-border, fa-pull-right or fa-pull-left classes are used for for pull quotes or article icons.

Example

The following code:

<i></i>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

Helvetica type 1 font free download. Results in:

Font Awesome Cheatsheet Pdf

Try It Yourself »




Fontawesome Cheatsheet
Back to posts
This post has no comments - be the first one!

UNDER MAINTENANCE

XtGem Forum catalog