html设置⽹页标题栏logo(图标)简单粗暴
在页⾯head中添加link
<link rel="shortcut icon" href="图标地址" type="image/x-icon">
ps:这种⽅法中,图标地址可在线,也可是本地的html网页设计的标题
例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="www.runoob/images/tryitimg.gif" type="image/x-icon">
<title>这是⼀个带图⽚的标签</title>
</head>
<body>
...
...
...
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。