WML <a>Tag



        The <a>...</a> tag pair can also be used to create an anchor link and always a preferred way of creating links.

        You can enclose Text or image inside <a>...</a> tags.

        Attributes:

        This element supports the following attributes:

        AttributeValueDescription
        hrefURLDefines URL of the liked page
        titlecdataDefines a text identifying the link
        xml:langlanguage_codeSets the language used in the element
        classclass dataSets a class name for the element.
        idelement IDA unique ID for the element.

        Example:

        Following is the example showing usage of this element.

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
"http://www.wapforum.org/DTD/wml12.dtd">

<wml>

<card title="A Element">
<p> Link to Next Page: 
   <a href="nextpage.wml">Next Page</a>
</p>
</card>

</wml>

This will produce the following result:

WAP Example 10
Advertisements