I am trying to use the md-icon in my app as per the documentation given here. However I am only able to get working with the type of syntax:
<i class="material-icons ng-scope">search</i>
The other usage type
<md-icon md-font-icon="search" alt="search"></md-icon>
<md-icon md-font-icon="icon-magnify" class="icon"></md-icon>
does not load anything.
I have already loaded the material fonts with
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Though I can get the work done with the first syntax; I am interested to know what am I doing wrong that the second syntax is not working, while it should work perfectly as per the documentation.