宁古塔 发表于 2019-9-5 16:42:31

网页贴图

为什么同样的代码,在chrome浏览器中能显示在edge浏览器中无法正常显示
<link rel="icon" type="image/x-icon" href="favicon.ico">

不二如是 发表于 2019-9-6 08:30:47

1、用来增加网站的图标,建议写法:
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">

auyhin丶 发表于 2019-9-6 11:40:23

首先要确认有没有favicon.ico这个图片
再确认这个图片的路径
href为源地址路径.
在href里写上图片的相对路径/绝对路径就行.

宁古塔 发表于 2019-9-6 16:19:55

不二如是 发表于 2019-9-6 08:30
1、用来增加网站的图标,建议写法:

在edge浏览器中还是无法显示,但是之前的可以在chrome中没有问题
<!DOCTYPE html>
<html>
        <head>
                <title>宁古塔</title>
                <meta charset="utf-8">
                <meta name="viewport" content="width=device-width, initial-scale=1.0">
                <meta name="author" content="宁古塔">
                <meta name="description" content="学习">
                <meta name="keyword" content="宁古塔">
                <meta http-equiv="refresh" content="5;http://www.baidu.com">
                <link rel=" shortcut icon" type="image/x-icon" href="favicon.ico">
                <link rel="stylesheet" type="text/css" href="psd.css">
        </head>
        <body>
                <h1>求职简历</h1>
                <h2>宁古塔</h2>
                <p>
                        为畜牧业发展做出更大贡献。
                </p>
                <h3>--2019年9月5日报告</h3>
        </body>
</html>

宁古塔 发表于 2019-9-6 16:21:44

图片和代码在同一文件夹
页: [1]
查看完整版本: 网页贴图