How to add a favicon to your website?
A favicon is the small icon that shows up in the browser tab next to your page title. There's a lot of old information out there about the favicon. In 2020 you don't need a `.ico` file. Here's what you need: 1. Resize your logo to be 32px by 32px 2. Save your logo as a png and name it favicon-32x32.png 3. Add the following line to your `<head>` <link rel = "icon" href = "favicon-32x32.png" /> That's it. If you are interested in more details you can keep reading. Does my website need an icon? Strictly speaking your site will work without one, but having an icon is critical for your user experience. Why is a favicon important? The icon is the main way that users will identify your site in their open browser tabs. It even shows up in search results so including an icon is important for SEO. Is a single 32x32px icon enough? 32x32 is sufficient for simple use cases but if you're brand-conscious it will be a...