获取标题内的图片 (HTML)
Get Image inside of title (HTML)
我需要一张图片来显示标题,我发现了很多关于如何做到这一点的 Whosebug 问题。 What is currently the best way to get a favicon to display in all browsers that support Favicons? and Add image in title bar。我做了这两个所说的(添加一个 .ico 文件和一个 .png 文件),并想出了这个(在 html 的头部):
<link rel="icon" href="/client/imgs/favicon.png" type="image/png" /
<link rel="shortcut icon" href="/client/favicon.ico" />
<title>Amaze</title>
我有这两个文件,但图像不会显示在本地主机中,也不会在我将其部署到 heroku 后显示 (https://labyrinth-sweeper.herokuapp.com/)。我漏掉/弄乱了什么部分?
我可以看到该图标。也许您的浏览器缓存中有一个旧图标?尝试类似 <link rel="shortcut icon" href="/client/favicon.ico?v=2" />
的操作来强制您的浏览器刷新图标。
我需要一张图片来显示标题,我发现了很多关于如何做到这一点的 Whosebug 问题。 What is currently the best way to get a favicon to display in all browsers that support Favicons? and Add image in title bar。我做了这两个所说的(添加一个 .ico 文件和一个 .png 文件),并想出了这个(在 html 的头部):
<link rel="icon" href="/client/imgs/favicon.png" type="image/png" /
<link rel="shortcut icon" href="/client/favicon.ico" />
<title>Amaze</title>
我有这两个文件,但图像不会显示在本地主机中,也不会在我将其部署到 heroku 后显示 (https://labyrinth-sweeper.herokuapp.com/)。我漏掉/弄乱了什么部分?
我可以看到该图标。也许您的浏览器缓存中有一个旧图标?尝试类似 <link rel="shortcut icon" href="/client/favicon.ico?v=2" />
的操作来强制您的浏览器刷新图标。