Google Material Icons
Material Icons
Material Icons are available in five styles and a range of downloadable sizes and densities. The icons are based on the core Material Design principles and metrics.
https://fonts.google.com/icons?selected=Material+Icons
You can style the icnos with CSS to target class (material-icons)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <! DOCTYPE html> < html > < head > < title >Google Icons</ title > </ head > < body > < i class = "material-icons" >close</ i > < i class = "material-icons" >menu</ i > < i class = "material-icons" >home</ i > </ body > </ html > |