0% found this document useful (0 votes)
26 views

Aim: Make A Table Using WML Language Date: 19-08-2010

The document aims to create a deck of three cards using WML (Wireless Markup Language). It contains code to define a template and three cards with different text formatting and a hyperlink to navigate between the cards. The cards contain centered text in varying sizes, styles, and a link to navigate between cards.

Uploaded by

kamal_nyn
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views

Aim: Make A Table Using WML Language Date: 19-08-2010

The document aims to create a deck of three cards using WML (Wireless Markup Language). It contains code to define a template and three cards with different text formatting and a hyperlink to navigate between the cards. The cards contain centered text in varying sizes, styles, and a link to navigate between cards.

Uploaded by

kamal_nyn
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 4

AIM: MAKE A TABLE USING WML LANGUAGE DATE: 19-08-2010

<?xml version="1.0" encoding="utf-8"?>


<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN"
"http://www.wapforum.org/DTD/wml13.dtd">
<wml>

<!-- Possible <head> elements here. -->

<template>
<!-- Template implementation here. -->
<do type="prev"><prev/></do>
</template>

<card id="page1" title="Table in WML">


<p>
<table columns="3">
<tr>
<td>Cell A</td>
<td>Cell B</td>
<td>Cell C</td>
</tr>

<tr>
<td>Cell D</td>
<td>Cell E</td>
<td>Cell F</td>
</tr>
<tr>
<td>Cell G</td>
<td>Cell H</td>
<td>Cell I</td>
</tr>
</table>
</p>
</card>
</wml>
Aim:- 19-08-10
a) To create a deck of three cards
b) Text formatting tags
c) Hyperlinks
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN"
"http://www.wapforum.org/DTD/wml13.dtd">
<wml>
<!-- Possible <head> elements here. -->
<template>
<!-- Template implementation here. -->
<do type="prev"><prev/></do> </template>

<card id="card1" title="Card #1">


<do type="unknown" label="Next">
<go href="#card2"/>
</do>
<p align="center">
<big> <b> we are indian first</b><br/></big>
<big><b>indian last</b> </big> <br/>
<big><u><i><b>indian forever</b></i></u><br/></big> </p>
<p align="right">
<a href="#card3">to "Card #3"</a>
</p> </card>

<card id="card2" title="Card #2">


<do type="unknown" label="next">
<go href="#card3"/>
</do>
<p align="center">
<big><b>Second Card</b></big> </p>
<p align="center">
<big> <b> i love my india &quot;&gt;&amp;&lt;&apos;</b><br/></big></p>
</card>

<card id="card3" title="Card #3">


<do type="prev" label="prevpage"><prev/>
</do>
<p align="center">
<big> <b> <u>jai shri ram</u></b><br/></big>
<big><b>hari</b> </big> <br/><a href="#card3"> tocard 3</a></p>
</card>

</wml>

You might also like