For a complete list of FontAwesome icons, please check FontAwesome Official Website
<em class="far fa-heart"></em><em class="fas fa-star"></em><em class="fab fa-facebook"></em>
Themify Icons is a complete set of icons for use in web design and apps, hand-crafted icons that draw inspiration from Apple iOS 7.
For a complete list of Themify icons, please check Themify Official Website
<em class="ti ti-heart"></em><em class="ti ti-star"></em>
Free, high quality, open source icon library from Bootstrap Team
For a complete list of Bootstrap icons, please check Bootstrap Official Website
<em class="bi bi-heart"></em><em class="bi bi-star"></em>
As Nioicon is our template default icon font so you will need take additional step as below to use third-party icon library.
You can simply add <link>
into <head>
tag on each page as below reference.
<!-- FontAwesome Icons -->
<link rel="stylesheet" type="text/css" href="./assets/css/libs/fontawesome-icons.css">
<!-- Themify Icons -->
<link rel="stylesheet" type="text/css" href="./assets/css/libs/themify-icons.css">
<!-- Bootstrap Icons -->
<link rel="stylesheet" type="text/css" href="./assets/css/libs/bootstrap-icons.css">
Alternatively, you can include globally from scss file to reduce request and load directly. So, you will need to edit the /scss/vendor/bundle.scss
file and active relevant code block as below. You must need to re-complie scss file after any change made.
// You just need to uncomment relavent library codes and recomplile.
//FontAwesome Icons
$fa-font-path: "../fonts";
@import "fontawesome/fontawesome.scss";
@import "fontawesome/brands.scss";
@import "fontawesome/regular.scss";
@import "fontawesome/solid.scss";
//Themify Icons
$ti-font-path : "../fonts";
@import "themify-icons/themify-icons";
//Bootstrap Icons
$bi-font-path : "../fonts";
@import "bootstrap-icons/bootstrap-icons";