It's easy to integrate Font Awesome into Twitter Bootstrap, or even use it on its own.
Use this method to integrate Font Awesome with the default Bootstrap CSS.
The font path is relative from your CSS directory.
<head>
of your html, reference the location to your font-awesome.min.css.
<link rel="stylesheet" href="../css/bootstrap.min.css"> <link rel="stylesheet" href="../css/font-awesome.min.css">
Use this method to integrate Font Awesome with Twitter Bootstrap using LESS.
@import "sprites.less";
with @import "font-awesome.less";
@FontAwesomePath
variable to point to your font directory.
@FontAwesomePath: "../font";
The font path is relative from your compiled CSS directory.
I have never used either, so let me know if the included SCSS or SASS files have issues.
Font Awesome works just as well without Twitter 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.
<link rel="stylesheet" href="../css/bootstrap.min.css"> <link rel="stylesheet" href="../css/font-awesome.min.css"> <!--[if IE 7]> <link rel="stylesheet" href="assets/css/font-awesome-ie7.min.css"> <![endif]-->