1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<HTML>
<HEAD>
<TITLE>Html2Wml Test Document -- Typical page</TITLE>
</HEAD>
<LINK REL="Stylesheet" HREF="/example/foo.css">
<script language="Javascript">
<!--
// It worth noting that if a Javascript is not commented out,
// it will screw things up.
function foo () {
foo;
}
-->
</script>
<BODY>
<H1>Html2Wml Test Document -- Typical page</H1>
<p>This page comes from CGI::WML test pages. </p>
<!-- Comment with incorrect closure --->
<!-- Multi-line comment
which -- has --embedded-- dashes -->
<p> I am some text.
<i>this is italic</i>
<b> bold</b>
<form method="get" action="/some/where/else.pl">
<input type="text" name="test_textfiled1" value="stuff">
<input type="hidden" name="test_hidden1" value="hiddenval1">
<input type="text" name="test_textfiled2" value="more stuff">
<input type="hidden" name="test_hidden2" value="hiddenval2">
<input type="Submit" value="Search Site">
</form>
<table border="0">
<tr> <td>one</td> <td>11</td> </tr>
<tr> <td>two</td> </tr>
</table>
<table border="5" cellpadding="0" cellspacing="33">
<tr>
<td>YY</td> <td>XX</td>
</tr>
</table>
</p>
<p> This parargaph is not closed
</body>
|