skip to Main Content

HTML favicon not displayed

I am trying to add a favicon to my web page. However, the icon does not seem to be displayed properly by my browser. My code looks as follows: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1.0" name="viewport">…

VIEW QUESTION

Html – Favico Not Showing Until Cache is Cleared Every Time

I have a page where the index.html has a head tag, which contains a link tag with a favico.svg: <link rel="manifest" href="./manifest.json"> <link rel="shortcut icon" type=“image/x-icon” href="./images/Site_Favicon.svg"> <link rel="icon" type=“image/x-icon” href="./images/Site_Favicon.svg"> and in manifest.json I have: "icons": [ { "src":…

VIEW QUESTION

HTML favicon not applied

<html lang="ko"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico"> <title>NAVER</title> </head> In the case above, I tried to add favicon to my tab bar, however, whatever I do, it does not apply. It stays the…

VIEW QUESTION
Back To Top
Search