Home > Net >  My HTML favicon is not working when I use exactly what it should be
My HTML favicon is not working when I use exactly what it should be

Time:10-16

My websites favicon is NOT working no matter what I try. I am on Brave browser. Here is the code for that:

<body style="background-color:gray">
  <title>MultiLangCoder Games</title>
  <link rel="icon" type="image/x-icon" href="multilangcoder.repl.co/Logo.ico"/>
</body>

I followed every help online, but NOTHING worked!

CodePudding user response:

Commenter is probably right, change the href link to: "https://multilangcoder.repl.co/Logo.ico" Works in both firefox and chrome for me.

CodePudding user response:

The problem is already solved, but just for good measures: The <title> </title> and <link> </link> tags both go in the <head> </head>. This also applies for some other tags as you can see here.

  • Related