Creating A Favicon
Favicons, are the little graphics that appear in your browser tabs.
Creating one for your company is easy.
Go to https://favicon.io/favicon-converter/ and upload your graphic. Make sure that the canvas size is square, or the converter will scale your graphic to make it square resulting in distortion.
Extract the files and copy them to the root of your website.1 Add the following to the head
element in your HTML.
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
-
Or put them in a favicon folder in your root to keep your root a little cleaner. Update the paths in the link elements accordingly. ↩