I made my font icon set with fontello. At the moment it works like this:
<div class="icons_class home" ng-click="toHome()"></div>
and the CSS of the corresponding class is:
.icons_class {
font-family: 'myFont';
...
...
}
.home:before {
content: '/e822';
}
but I want to use like this:
<div class="icons_class" ng-click="toHome()">home</div>
like material icon.
Is it possible? Do I have to use ligatures for this purpose?