WML Tutorial

Subjects
1. The xml header tag
2. Using cards (and what are they).
3. Page Layout
4. Accepting user input
5. Inserting links.
6. Changing your text appearance.
7. Using pictures.
8. List all the tags.


Text appearance
You can increase and decrease the size of text on your page by use of two tags. The way the text is displayed however, depends on the WAP device being used. You differentiate, by making text either bigger or smaller, using the <big> and <small> tags.

An example follows...

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

<card id="MainCard" title="This is a first card">
<p align="center">
<small>This is small text</small>
<br/>
This is normal size
<br/>
<big>This is big</big>
<br/>
<big><big>This is really big</big></big>
<br/>
</p>
</card>

</wml>