<?xml version="1.0" encoding="UTF-8" ?>

<!--
    The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
    NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED",  "MAY", and
    "OPTIONAL" in this document are to be interpreted as described in
    RFC 2119.

    Much of this was inspired by the Dublin Core Metadata Initiative.
    http://dublincore.org
-->

<webfont version="1.0">

    <!--
        MUST have information about the font type
        of the fontdata file.

        This will allow the .webfont format to support
        different font formats if and when the need arises.
    -->
    <format>opentype</format>

    <!--
        MUST have a name for the font.
    -->
    <name>Demo Font-Bold</name>

    <!--
        MUST have a creation date. This MUST conform
        to ISO 8601.

        This date specifies when this particular version
        of the font was created. This date acts as the
        version identifier for the font.
    -->
    <creationdate>2009-07-13T09:23:30+01:00</creationdate>

    <!--
        SHOULD have vendor, source or maintainer info.
    -->
    <vendorname>Font Vendor</vendorname>
    <vendorurl>http://fontvendor.com</vendorurl>

    <!--
        MAY have design credits.

        More than one designer element is allowed. Each of these MUST
        have a name attribute. Each of these MAY have a url attribute.
        Each of these MAY have an arbitrary role attribute.
    -->
    <designcredits>
        <designer name="Font Designer" url="http://fontdesigner.com" role="Lead"/>
        <designer name="Another Font Designer" url="http://anotherfontdesigner.com" role="Contributor"/>
    </designcredits>

    <!--
        MAY have an arbitrary text description of the font's
        design, it's history, etc.

        The data would be a fragment of lightly styled HTML.
        The data MUST be valid XML.
    -->
    <description>
        A member of the Demo font family.<br />
        This font is a <i>humanist sans serif</i> style designed
        for optimal legibility in low-resolution environments.
        It can be obtained from <a href="http://fontvendor.com">
        fontvendor.com</a>
    </description>

    <!--
        MAY have license text.

        The data would be a fragment of lightly styled HTML.
        The data MUST be valid XML.
     -->
    <license>A license goes here.</license>
    <!--
        MAY have a url to licensing info.
     -->
    <licenseurl>http://fontvendor.com/license</licenseurl>

    <!--
        MAY have copyright text.

        The data would be a fragment of lightly styled HTML.
        The data MUST be valid XML.
    -->
    <copyright>Copyright 2009 Font Vendor.</copyright>

    <!--
        MAY have trademark text.

        The data would be a fragment of lightly styled HTML.
        The data MUST be valid XML.
    -->
    <trademark>Demo Font is a trademark of Font Vendor.</trademark>

    <!--
        MAY have domain info.

        If the font may be used in all places, <url>any</url>
        is used.
    -->
    <allow>
        <url>http://fontuser.com</url>
        <url>http://127.0.0.1</url>
        <url>http://socialnetwork.com/fontuser</url>
        <url>local</url>
    </allow>

    <!--
        MAY have an element containing arbitrary data
        defined by the vendor, source, maintainer, etc.

        The data in this element would not follow any
        standard structure. However it MUST be valid XML.
    -->
    <privatedata>
        <fontid>1234567890</fontid>
        <tagdate>2009-07-13</tagdate>
    </privatedata>

</webfont>

