{% capture stripe_ad_content %}
Setting up Font Awesome can be as simple as adding two lines of code to your website, or you can be a pro and customize the LESS yourself! Font Awesome even plays nicely with Bootstrap!
{% endcapture %} {% include stripe-ad.html %}Add Font Awesome + Bootstrap into your website with two lines of code. You don't even have to download or install anything!
<head>
section of your site's HTML.
{% highlight html %}
{% endhighlight %}
Use this method to get the default Font Awesome CSS with the default Bootstrap CSS.
The font path is relative from your CSS directory. If you're having an issue getting Font Awesome icons to load, this is likely the issue.
<head>
of your html, reference the location to your font-awesome.min.css.
{% highlight html %}
{% endhighlight %}
Use this method to customize Font Awesome and Bootstrap using LESS.
@import "sprites.less";
with @import "font-awesome.less";
@FontAwesomePath
variable to point to your font directory.
{% highlight html %}
@FontAwesomePath: "../font";
{% endhighlight %}
The font path is relative from your compiled CSS directory.
Font Awesome works just as well without Bootstrap.
Font Awesome supports IE7. If you need it, you have my condolences.
<head>
of your html, reference the location to your font-awesome-ie7.min.css.
{% highlight html %}
{% endhighlight %}