<link>标签

316 阅读1分钟

link标签定义文档与外部资源的关系

<link rel=""  href="">
  1. link 元素是空元素,它仅包含属性。
  2. 此元素只能存在于 head 部分,不过它可以出现任何次。
  3. rel : 定义当前文档与被链接文档之间的关系。有很多的rel值。
  4. href : 定义被链接文档的位置。

目前用过的rel值

  1. rel="stylesheet" 链接一个css层叠样式表
<link rel="stylesheet" href="css/index.css">
  1. rel="icon" 网页图标
<link rel="icon" href="favicon.ico">

网页图标 (favicon),一个ico格式的图片。有许多的网站可以在线转换图片成ico格式

<link rel="icon"  href="favicon.ico">

效果图:

转换网站

ico.duduxuexi.com/

link标签rel值

blog.csdn.net/weixin_4419…