I am a new user to python flask and when I run my flask website on VS Code terminal i found that it is showing me that "GET /favicon.ico HTTP/1.1" 404 - I want to know what does it mean and why is it showing me the 404 error
Asked
Active
Viewed 5,374 times
2
-
Possible duplicate of [Creating a favicon](https://stackoverflow.com/questions/1547150/creating-a-favicon) – Matthew Gaiser Oct 07 '19 at 12:25
2 Answers
6
It isn't required. It stands for "favourite icon" and is the icon the browser will use when displaying the page. You know the logos in each tab of a web browser? Those are favicons.

Matthew Gaiser
- 4,558
- 1
- 18
- 35
5
A favicon is an icon that appears at the top of a browser tab. Although they are not required, favicons are important because they help the user identify your site. If you would like to generate a favicon, use this link Favicon Generator
Add this code to the section of your website<link rel='icon' href='favicon.ico' type='image/x-icon'/ >

1215927
- 99
- 1
- 7