如何将网站图标设置为文本
How to set a favicon to text
我知道可以像这样从图像设置网站图标:
<link rel="icon" href="favicon.ico">
有没有办法将其设置为文本?
您可以对包含文本元素 (source) 的 SVG 的数据 URI 进行编码:
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22></text></svg>">
我知道可以像这样从图像设置网站图标:
<link rel="icon" href="favicon.ico">
有没有办法将其设置为文本?
您可以对包含文本元素 (source) 的 SVG 的数据 URI 进行编码:
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22></text></svg>">