我想知道它是favicon还是meta,请帮忙。
提前致谢。
您需要使用一系列元标记,具体取决于您是尝试在 Web 浏览器上查看您的应用程序还是作为操作系统中的应用程序图标。以下是我通常包含在 Web 项目中的版本。它们通常可以满足我的大部分需求,但是根据您的目标平台,您可以提供大量图标列表。
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://yourwebiste.com/images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://yourwebiste.com/images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://yourwebiste.com/images/favicon-16x16.png"
/>