Show TOC

Object documentationDocumentHead Locate this document in the navigation structure

 

Renders <head> section of the document and includes the necessary style sheets and scripts. It is a plain HTML tag. In the documentHead a nested META element (standard HTML) can be used. With META element information about the document (name, content, scheme, http-equiv) can be specified.

  • title

    Set the title that is usually displayed in the title bar of the web client.

Attributes

M

Values

Usage

title

*

String

Taglib

title="SAP"

Classlib

See Control API document.

Example

Example Example

  1.   <hbj:content id="myContent">
         <hbj:document>
           <hbj:documentHead title="sap">
             <meta name="description" content="Introduction page">
             <meta name="author" content="sap">
             <meta name="date" content="Jan. 2002">
             ...
           </hbj:documentHead>
           <hbj:documentBody>
             ...
           </hbj:documentBody>
         </hbj:document>
      </hbj:content>
    
End of the code.