favicon head html

Solutions on MaxInterview for favicon head html by the best coders in the world

showing results for - "favicon head html"
Claudia
22 Aug 2020
1<!--
2general favicon setting for browsers.
3You can also use .ico files you just have to change:
4type="image/png" to type="image/x-icon"
5For backwards compatibility to older browsers (e.g. IE6), use .ICO
6 -->
7<link rel="icon" type="image/png" href="path/to/favicon.png" sizes="32x32">
8<link rel="icon" type="image/png" href="path/to/favicon.png" sizes="96x96">
9
10<!-- Apple touch icon support -->
11<link rel="apple-touch-icon" sizes="180x180" href="path/to/favicon.png">
12
13<!-- defines the tile for Microsoft tiles -->
14<meta name="msapplication-TileColor" content="#212121">
15<meta name="msapplication-TileImage" content="path/to/favicon.png">