07-19-2023, 03:14 PM
Thanks for the answer, my example is probably unsuitable for displaying this file format in this way.
The ICO file format is safe to use for favicons according to HTML standard.
But other file formats can also be used for favicons if the size is specified.
<!DOCTYPE html>
<html>
<head>
<title>My Page Title</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>
</body>
</html>
The ICO file format is safe to use for favicons according to HTML standard.
But other file formats can also be used for favicons if the size is specified.
<!DOCTYPE html>
<html>
<head>
<title>My Page Title</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>
</body>
</html>

