网站标题小图标生成和展示

版权声明:Till good is better, but better best !My trying hard will go on!Please wait and see! https://blog.csdn.net/u012761373/article/details/89437188

效果:

1.访问在线生成ico图标网址

      http://ico.duduxuexi.com/ 生成必须是(16*16)格式的

2.在自己的发布代码里加入关键代码

<link rel="icon" href="~/favicon.ico" type="image/x-icon" />
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>@ViewBag.Title - Bloss.Guo</title>
    <link rel="icon" href="~/favicon.ico" type="image/x-icon" />
    <link href="~/Content/Site.css" rel="stylesheet" type="text/css" />
    <link href="~/Content/bootstrap.min.css" rel="stylesheet" type="text/css" />
    <script src="~/Scripts/modernizr-2.6.2.js"></script>
</head>

3.访问Web网址查看小图标

猜你喜欢

转载自blog.csdn.net/u012761373/article/details/89437188