For some reason my favicon is not appearing on chrome. I am using django. And I have a file named favicon.ico in my static folder.
{% load static %}
<link rel="icon" href="{% static 'favicon.ico' %}"/>
For some reason my favicon is not appearing on chrome. I am using django. And I have a file named favicon.ico in my static folder.
{% load static %}
<link rel="icon" href="{% static 'favicon.ico' %}"/>
Hope this may help:
{% load static %}
<link rel="shortcut icon" href="{% static 'yourappname/images/favicon.png' type='image/ico' %}"/>
OR
You can store favicon as a png file too.
<link rel="shortcut icon" href="{% static 'yourappname/images/favicon.png' type='image/png' %}"/>
Additionally:
<head>
tags in your template.{% load static %}
tag in your template.You can find more details about 'using favicon' from this question.
You can try :
<link rel="shortcut icon" href="{% static 'players/images/liverpool.png' type='image/png' %}"/>