WML <br> Tag



        The <br /> element defines a line break and almost all WAP browsers support a line break tag.

        Attributes:

        The <br /> element supports the following attributes:

        Attribute Value Description
        xml:lang language_code Sets the language used in the element
        class class data Sets a class name for the element.
        id element ID A unique ID for the element.

        Example:

        Following is the example showing usage of <br /> element.

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

<wml>

<card title="Line Break Example">
<p align="center">
This is a <br /> paragraph with a line break.
</p>
</card>

</wml>

This will produce the following result:

WAP Example 4
Advertisements