Search code examples
htmlfavicon

favicon is not displayed on html page


I want to put icon for the title

<?xml version="1.0" encoding="ISO-8859-1"?>
<html>
<head><title>TITLE</title></head>
<link rel="icon" type="image/png" href="logo.png" />
<body>

</body>

index.html and logo.png are in a same folder.

there is no Icon displayed.

Please guide.

Thanks in advance


Solution

  • If you want to use a png, try this:

    <link rel="icon" type="image/png" href="http://example.com/image.png" />