Skip to content

<meta> element

The <meta> node contains a single name/value pair of metadata from the source document. The node does not have child elements.

Attributes

Attribute Description
name The name of the metadata field, for example: Title, Author or Page Count.
value The value of the metadata field.

Styles

None

Children

None

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>