In ADF UIX, the head component is a container for the meta data of the document, including the document title and any style sheets. For HTML, this is equivalent to generating the HTML<head> tag.
In a UIX XML page, the head component is usually inserted as a metaContainer named child of the document element.
Example:
...
<document>
<metaContainer>
<!-- Set the page title -->
<head title="Document title"/>
</metaContainer>
<contents>
<body>
<contents>
<pageLayout/>
</contents>
</body>
</contents>
</document>
...
Inserting a Head
Working with Simple and Miscellaneous Components
Copyright © 1997, 2004, Oracle. All rights reserved.