How to use :
Find the icon you want to display (eg, "check").
Add a <b> tag in your HTML with the class fa and a class fa-check (or the name of whatever icon you found in the list).
<b class="fa fa-check"></b>
Or in HAML for a link :
= link_to new_user_registration_path, class: "btn btn-primary btn-lg" do
%b.fa.fa-check
Sign up now!
Font Awesome
Super library to easily put icons in your views
List of icons : http://fortawesome.github.io/Font-Awesome/icons/
How to use : Find the icon you want to display (eg, "check"). Add a
<b>
tag in your HTML with the classfa
and a classfa-check
(or the name of whatever icon you found in the list).Or in HAML for a link :