I'm currently creating a website, and I'm almost finished, but there's one problem. The favicon does not show up on view source, or on an image (in localhost, chrome). You see, I'm not sure if I'm doing something wrong or if this is just a bug. Thanks for the help.
See, no favicon will show up in view-source. This is the same with images. But if I hop over to google, they don't have this problem.
Is this problem happening just because I'm on localhost, and when I publish my site it will be fine?
Thank you.
. .
Also this is my code that I currently have for my favicon:
<link rel="apple-touch-icon" sizes="180x180" href="./css/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./css/images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./css/images/favicons/favicon-16x16.png">
<link rel="manifest" href="./css/images/favicons/site.webmanifest">
<link rel="mask-icon" href="./css/images/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="./css/images/favicons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="test">
<meta name="application-name" content="test">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="./css/images/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">