<?xml version="1.0" encoding="utf-8"?>
<!-- The XML Declaration is above. WML is XML.-->
<!-- This construct is an XML comment. -->
<!-- DOCTYPE declaring that this document is WML 1.3. There are also declarations for WML 1.1 and 1.2. Developer should only use WML 1.3. -->
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd">
<!-- The root tag in a WML document is <wml>. -->
<wml>
<!-- WML uses a card metaphor. A WML document (or deck) may contain several cards. Each card needs a unique ID and name. -->
<!-- The "&apos;" token below is an XML entity. XML entities are used to encode characters that may impede document processing if left in their original form. -->
<card id="start" title="Sunset Farmers&apos; Market">
<!-- All textual content in a card must be contained in a <p> tag. -->
<p>Welcome to the <b>Sunset Farmers&apos; Market</b>!</p>
<p>Visit us every Wednesday afternoon in the city center for farm-fresh fruit, vegetables and plants.</p>
<!-- Anchor is one link structure in WML. -->
<p><anchor>Contact Us
<go href="#contact"/> 
</anchor>
</p>
</card>

<!-- Subsequent cards in the deck are not displayed unless user navigates there by clicking links.-->
<card id="contact" title="Contact Us">
<p>Contact the Sunset Farmers&apos; Market at <a href="wtai://wp/mc;5035551234">503-555-1234</a>.</p>
<p><a href="#start">Home</a></p>
</card>

<!-- WML is XML. Make sure that close tags measure up.-->
</wml>