<title> Element

This element provides the information which is to be stored between the TITLE tags, between the HEAD tags of the Ephox EditLive! for Java document.  The element has no attributes.

Element Tree Structure

<editLiveForJava>
    <document>
        <html>
            <head>
                <title>

<editLiveForJava>
    <document>
        <html>
            <head>
                <title>
                    <!--title configuration settings-->
                </title>
            ...
            </head>
            ...
        </html>
    </document> 
    ...
</editLiveForJava>

Example

The following example demonstrates how to specify the title of the EditLive! for Java document to be This is the Title.

<editLiveForJava>
    <document>
        <html>
            <head>
                <title>This is the Title</title>
                ...
            </head>
            ...
        </html>
    </document>
    ...
</editLiveForJava>

Remarks

The <title> element can appear only once within the <head> element.

See Also