Example WML document:
<?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="HTML" title="HTML Tutorial">
<p>
Our HTML Tutorial is an award winning
tutorial from W3Schools.
</p>
</card>
<card id="XML" title="XML Tutorial">
<p>
Our XML Tutorial is an award winning
tutorial from W3Schools.
</p>
</card>
</wml> As you can see from the example, the WML document is an XML document. The DOCTYPE is defined to be wml, and the DTD is accessed at
www.wapforum.org/DTD/wml_1.1.xml.
The document content is inside the <wml>...</wml> tags. Each card in the document is inside <card>...</card> tags, and actual paragraphs are inside <p>...</p> tags. Each card element has an id and a title.