Hi,

I once found how to inline code a favicon with base64 with a program which ships with any kind of linux distro and the resulted data / converted favicon.ico could be included in the html page with
Code:
<link rel="icon" type="image/png" href="data:image/png;base64, [BASE64-DATA] "/>
Unfortunaltely, I lost the snippet of how to encode the favicon to the above needed format.

Does anybody know? Any hints?