<link> 是什么意思?标签除了包括样式表之外还做什么?

What does lt;linkgt; tag do besides including stylesheets?(lt;linkgt; 是什么意思?标签除了包括样式表之外还做什么?)
本文介绍了<link> 是什么意思?标签除了包括样式表之外还做什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道 HTML <link> 标记用于附加样式表,但是查看 W3CSchools 标记参考,它还有许多其他的 rel 属性值.我找遍了所有地方,但我一辈子都找不到一个地方来详细描述其他价值观的作用以及它们的工作方式.谁能把我送到正确的地方或自己解释一下?

I know that the HTML <link> tag is used for attatching stylesheets, but looking at the W3CSchools tag reference, it has many other values for the rel attribute. I've looked all over the place, but I can't for the life of me find a place that describes in detail what the other values do and how they work. Can anyone send me to the right place or explain it themselves?

让我重新表述我的问题;我知道链接标签提供了与当前文档相关的其他页面,但它们是如何使用的?例如,如何使用 first、prev 和 next 关系?

Let me rephrase my question; I know that the link tag supplies other pages that relate to the current document, but how are they used? For example, how are the first, prev, and next relationships used?

推荐答案

我知道两个突出的常见用法:

I know two prominent common uses:

  • rel="stylesheet"来引用外部CSS样式表

  • With rel="stylesheet" to reference external CSS style sheets

rel="favicon"来引用浏览器的favicons

With rel="favicon" to reference browser favicons

另外还有

  • 正向和反向链接 (rel="next")

指向搜索引擎替代资源的链接 (rel="alternate")

Links to alternative resources for search engines (rel="alternate")

查看 W3C 参考:HTML 中的链接文档 以了解样式表和后两者的详细信息.

Check the W3C Reference: Links in HTML documents for details on stylesheet, and the latter two.

这篇关于&lt;link&gt; 是什么意思?标签除了包括样式表之外还做什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to remove this error quot;Response must contain an array at quot; . quot;.quot; while making dropdown(如何删除此错误quot;响应必须在quot;处包含数组。创建下拉菜单时(Q;))
Why is it necessary to use `document.createElementNS` when adding `svg` tags to an HTML document via JS?(为什么在通过JS为一个HTML文档添加`svg`标签时,需要使用`Document.createElementNS`?)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)
What should I consider before minifying HTML?(在缩小HTML之前,我应该考虑什么?)