The head tag serves as a container element for information on access control and meta-data that applies to the entire deck (the collection of all cards).
The access control information is contained in the access element. The meta-data information is contained in the meta element.
Nested Tags: access meta
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.WAPforum.org/DTD/wml_1.1.xml">
<wml>
<head>
<access domain="devguru.com">
<meta name="keyword" content="wireless markup language" />
<meta name="author" content="The Guru" />
</head>
<card id="card1" title="Card 1">
<do type="accept">
<go href="#card2" />
</do>
<p>
Please Click Accept
</p>
</card>
<card id="card2" title="Card 2">
<p>
DevGuru is great!
</p>
</card>
</wml>