html.html (592B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <html><head> 3 <title>A Tiny Page</title> 4 <style type="text/css"> 5 <!-- 6 p { font-size:15pt; color:#000 } 7 --> 8 </style></head><!-- real comment --> 9 <body bgcolor="#FFFFFF" text="#000000" link="#0000CC"> 10 <script language="javascript" type="text/javascript"> 11 function changeHeight(h) { 12 var tds = document.getElementsByTagName("td"); 13 for(var i = 0; i < tds.length; i++) { 14 tds[i].setAttribute("height", h + "px"); 15 }} 16 </script> 17 <h1>abc</h1> 18 <h2>def</h2> 19 <p>Testing page</p> 20 </body></html> 21