Anchor
Anchor method with inputs of title, href and content.
public void Anchor( String title,
String href, String content)
{
_anchor( "title='" + title + "'" );
__go( "href='" + href + "'" );
quote( content );
anchor_();
}
Images link to images.wml and Timer links to timer.wml.
wmlHeader();
_wml();
_card();
_p( "align='center'" );
quote( "Anchor and Link" );
p_();
_p( "align='center'" );
Anchor( "View Image", "images.wml", "Images" );
Anchor( "Run Timer", "timer.wml", "Timer" );
p_();
_p( "align='center'" );
quote( "click anchor goto other decks." );
p_();
card_();
wml_();
|