CSS/HTML

关注公众号 jb51net

关闭
首页 > 网络编程 > CSS/HTML > HTML link标签

HTML中link标签属性详解

作者:施主来了

在HTML中,link标签是一个自闭合元素,通常位于文档的head部分。它用于建立与外部资源的关联,如样式表、图标等。link标签具有多个属性,其中rel和href是最常用的,文中有详细的代码示例,感兴趣的同学可以参考阅读

在HTML中,link标签是一个自闭合元素,通常位于文档的head部分。它用于建立与外部资源的关联,如样式表、图标等。link标签具有多个属性,其中relhref是最常用的。

rel属性定义了当前文档与链接资源之间的关系。常见的rel属性值有:

href属性用于指定链接资源的URL。

一个典型的link标签示例是:

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>My Website</title>
  <!-- 链接到外部CSS样式表 -->
  <link rel="stylesheet" href="styles.css" rel="external nofollow"  rel="external nofollow" >
  <!-- 链接到网站图标 -->
  <link rel="icon" href="favicon.ico" rel="external nofollow" >
</head>
<body>
  <h1>Link!</h1>
  <p>这是一段link的介绍。</p>
</body>
</html>

在这个示例中,我们使用了两个link标签。第一个link标签将HTML文档与外部的CSS样式表styles.css关联起来,用于定义页面的样式。第二个link标签将HTML文档与网站图标favicon.ico关联起来,当用户在浏览器中打开这个网站时,会显示这个图标。

当然,link标签还有其他属性和用途,下面列举了一些常见的属性和用例:

<link rel="stylesheet" href="styles.css" rel="external nofollow"  rel="external nofollow"  type="text/css">
<link rel="stylesheet" href="print.css" rel="external nofollow"  media="print">
<link rel="icon" href="icon-48x48.png" rel="external nofollow"  sizes="48x48">
<link rel="icon" href="icon-96x96.png" rel="external nofollow"  sizes="96x96">
<link rel="stylesheet" href="https://link.com/styles.css" rel="external nofollow"  rel="external nofollow"  crossorigin="anonymous">
<link rel="stylesheet" href="https://link.com/styles.css" rel="external nofollow"  rel="external nofollow"  crossorigin="anonymous" integrity="sha256-base64-encoded-hash">
<link rel="preload" href="font.woff2" rel="external nofollow"  rel="external nofollow"  as="font" type="font/woff2" crossorigin>
<link rel="preload" href="font.woff2" rel="external nofollow"  rel="external nofollow"  as="font" type="font/woff2" crossorigin>

这些是link标签的一些常见属性和用途。

除了前面提到的,rel还有更多的属性值:

<link rel="alternate" hreflang="es" href="https://link.com/es/a" rel="external nofollow" >
<link rel="alternate" media="only screen and (max-width: 640px)" href="https://link.com/mobile/a" rel="external nofollow" >
<link rel="dns-prefetch" href="//link.com" rel="external nofollow" >
<link rel="preconnect" href="https://link.com" rel="external nofollow" >
<link rel="prefetch" href="pre-page.html" rel="external nofollow" >
<link rel="canonical" href="https://link.com/a/post" rel="external nofollow" >
<link rel="manifest" href="manifest.json" rel="external nofollow" >

请注意,不同的浏览器对于这些属性和功能的支持程度可能会有所不同。建议在使用新功能时查阅相关文档,以确保兼容性和功能性。

以上就是HTML中link标签属性详解的详细内容,更多关于HTML link标签的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文