Skip to content

<head> element

The <head> node contains information about the document as a whole, such as metadata.

Attributes

None

Styles

None

Children

Node Description
<meta> There is a single <meta> tag for each name/value pair of metadata in the document.

Example

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<doc>
    <head>
        <meta name="Author" value="Troy Jennings" />
        <meta name="Last Author" value="Ben Truscott" />
        <meta name="Creation Date" value="Sun, 4 Jun 2013 8:15:00 AM" />
        <meta name="Last Saved Date" value="Sun, 4 Jun 2013 8:15:00 AM" />
        <meta name="Revision Number" value="2" />
        <meta name="Page Count" value="50" />
        <meta name="Word Count" value="4633" />
        <meta name="Character Count" value="26412" />
    </head>
    <page styles="..." left="0" top="0" width="816" height="1056">
        ...
    </page>
</doc>