看着网上好多网页标题前面有个漂亮的图标,就也想给自己网页也加个图标,于是上网搜了一下代码,记录下来:
<html>
<head>
<title>Hello </title>
<link rel="Shortcut Icon" href="logo.ico" type="image/x-icon" />
</head>
<body>
</body>
</html>
运行效果如下:
网上的代码说图标格式最好是ico的,不过我试了一下png的,也是可以的,下面是png的图标
代码:
<html>
<head>
<title>Hello </title>
<link rel="Shortcut Icon" href="logo.png" type="image/x-icon" />
</head>
<body>
</body>
</html>
运行效果:
时间: 2024-10-01 23:38:16