HTML图片编码

时间:2012-11-19 02:12:22

标签: html css image

我在想。我在浏览器的网站标签上看到了favicons,并想知道如何为我的网站做这个。如果您不知道我在说什么,请查看图片。enter image description here

2 个答案:

答案 0 :(得分:2)

<!DOCTYPE html 
      PUBLIC "-//W3C//DTD HTML 4.01//EN"
      "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon" 
      type="image/png" 
      href="http://example.com/myicon.png">
[…]
</head>
[…]
</html>

<link>标记是您配置图标的位置。

This link should help you with what your looking for.

答案 1 :(得分:2)

只需添加:

<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">

在你的html头元素中。