English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Reference Manual

HTML Tag大全

HTML link rev attribute

HTML <link> tag

Online Examples

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

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

Browser Compatibility

IEFirefoxOperaChromeSafari

Attention:Almost no mainstream browsers support the rev attribute.

Definition and usage

HTML5 The <link> rev attribute is not supported.

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

The rev attribute with rel Attribute ideas.

Syntax

<link rev="value">

Attribute value

Value Description
alternate Alternate version of the document (such as print page, translation, or mirror).
stylesheet External stylesheet of the document.
start First document in the collection.
next Next document in the collection.
prev Previous document in the collection.
contents Table of contents of the document.
index Index of the document.
glossary Glossary (explanation) of the terms used in the document.
copyright Document containing copyright information.
chapter Chapter of the document.
section Section of the document.
subsection Subsection of the document.
appendix Appendix of the document.
help Help documents.
bookmark Related documents.

HTML <link> tag