Friday 11 October 2013

A WML program to display text in Bold, Italic, Small, Big, Emphasize format.

AIM:  Write a WML program to display text in Bold, Italic, Small, Big, Emphasize format.
CODE:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN"
     "http://www.wapforum.org/DTD/wml13.dtd">
<wml>

  <card id="card1" title="Pract_2">
    <p align="center">
      <big><b>Second practical of WML</b></big> </p>
    <p align="center"> <big> This is BIG Fonts </big> </p>
    <p align="center"> <b> This is BOLD Fonts </b> </p>
    <p align="center"> <i> This is ITALIC Fonts </i> </p>
    <p align="center"> <u> This is UNDERLINE Fonts </u> </p>
    <p align="center"> <em> This is EMPHASIZE Fonts </em> </p>
    <p align="center"> <small> This is SMALL Fonts </small> </p>    

  </card>

</wml>

No comments:

Post a Comment