HTML CSS Reference/HTML Attributes Reference/rev

Материал из Web эксперт
Перейти к: навигация, поиск

"rev" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For rev</Title></head> <BODY> <a id="myL" lang="it" href="http://www.wbex.ru" rev="index" target="_blank">

  The index page forthis document

</a> </BODY> </HTML>


     </source>
   
  


rev is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<a> <link> | +----------------+--------------------------------------------------------------+

     </source>
   
  


rev Possible Values

   <source lang="html4strict">

Possible values include alternate (specifying a substitute document), appen dix, bookmark, chapter, contents (identifying a table of contents), copyright, glossary, help, index, next (indicating the next in a sequence of documents), offline, prev (indicating the previous in a sequence of documents), section, shortcut icon, start (indicating the first in a sequence of documents), stylesheet subsection.


     </source>
   
  


"rev" Syntax and Note

   <source lang="html4strict">

Note:

The reverse of the rel attribute. rev describes the relationship between the current document with the document in href.

Syntax:

<element rev="value"> . . . </element>


     </source>