Icons
Bigdeal have mainly used FontAwesome Icons. FontAwesome icons available in FontAwesome.com/icons, other icons are available
in assets/images/icon
How to use FontAwesome Icons?
- You can place Font Awesome icons just about anywhere using a style prefix and the icon’s name.
- To reference an icon, you need to know two bits of information. 1) its name, prefixed with fa- (meaning “font awesome” naturally!) and 2) the style you want to use’s corresponding prefix**.
for example:
<i class="fas fa-camera"></i><!-- this icon's 1) style prefix == fas and 2) icon name ==
camera-->
<i class="fas fa-camera"></i> <!-- using an <i> element to reference the icon -->
<span class="fas fa-camera"></span> <!-- using a <span> element to reference the icon -->
how to use Feather Icon
- To use an icon on your page, add a data-feather attribute with the icon name to an element:
- See the complete list of icons at feathericons.com.
for example:
<i data-feather="circle"></i>