Where do I find a list of all mat-icons — Angular

EDIT: As the icons listed on the website are slightly outdated, here’s some alternative resources: Material Design Icons DX – (forked version) Isn’t it Material Icons (as stated by @RobbyCornelissen)? The Google Material Design team had recently (last month) updated their website. Anyways, the Angular Material team expects developers to include the Google Material Design Icon Font … Read more

Customize icon for “Add to home screen”

I want to specify the icon that shows in the home screen. How can i do that? You can use <link rel=”apple-touch-icon” sizes=”128×128″ href=”niceicon.png”> (yes, even for Android device). Please check iOS document for detail information on Apple devices. Please note you can even define icon for the entire website. Please check Android document for … Read more

How to add a browser tab icon (favicon) for a website?

There are actually two ways to add a favicon to a website. <link rel=”icon”> Simply add the following code to the <head> element: PNG favicons are supported by most browsers, except IE <= 10. For backwards compatibility, you can use ICO favicons. Note that you don’t have to precede icon in rel attribute with shortcut … Read more