Latest web development tutorials

HTML link rev attributes

HTML link Tag Reference HTML <link> tag

Examples

In the following examples, rev attribute indicates the current document is "wildcats.htm" parent page:

<head>
<link rev="parent" href="wildcats.htm">
</head>


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Note: Almost no mainstream browsers support rev attributes.


Definition and Usage

HTML5 does not support the <link> rev attributes.

rev attribute specifies the relationship between the linked document and the current document is.

rev attribute rel attribute ideas.


grammar

<link rev="value">

Property Value

描述
alternate 文档的替代版本(比如打印页、翻译或镜像)。
stylesheet 文档的外部样式表。
start 集合中的第一个文档。
next 集合中的下一个文档。
prev 集合中的上一个文档。
contents 文档的目录表格。
index 文档的索引。
glossary 在文档中使用的词汇的术语表(解释)。
copyright 包含版权信息的文档。
chapter 文档的章。
section 文档的节。
subsection 文档的小节。
appendix 文档的附录。
help 帮助文档。
bookmark 相关文档。


HTML link Tag Reference HTML <link> tag