WML <u> Tag



        The <u> element defines a underlined text.

        Attributes:

        This element supports the following attributes:

        AttributeValueDescription
        xml:langlanguage_codeSets the language used in the element
        classstringSets 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="Text Formatting">
        <p>
          <b>bold text</b><br/>
          <big>big text</big><br/>
          <em>emphasized text</em><br/>
          <i>italic text</i><br/>
          <small>small text</small><br/>
          <strong>strong text</strong><br/>
          <u>underlined text</u>
        </p>
        </card>
        
        </wml>
        

        This will produce the following result:

        WAP Example 6
        Advertisements