35 lines
811 B
JavaScript
35 lines
811 B
JavaScript
|
<html>
|
||
|
<head>
|
||
|
<title>Basic HTML document - Happy Codings :-) JavaScript Code Examples</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>http://javascript.happycodings.com/</li>
|
||
|
<li>http://html-css.happycodings.com/</li>
|
||
|
<li>http://cplusplus.happycodings.com/</li>
|
||
|
<li>http://java.happycodings.com/</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>
|