Mega Code Archive

 
Categories / JavaScript DHTML / HTML
 

A Basic HTML Page

<html>   <head>     <title>Basic HTML document</title>     <script type="text/javascript"></script>   </head> <body>   <h1>Heading of Basic Document</h1>   <form>     <input name="submit button" type="SUBMIT">   </form>   <ol type=1>     <li>One</li>     <li>Two</li>     <li>Three</li>     <li>Four</li>   </ol>   <table width="3" height="3" border>     <tr>       <th colspan="3">Table</th>     </tr>     <tr>       <td>cell1</td>       <td>cell2</td>       <td>cell3</td>     </tr>    <tr>       <td>cell4</td>       <td>cell5</td>       <td>cell6</td>     </tr>   </table>   <P>     This is a Basic HTML document structure.   </p> </body> </html>