01 October, 2009

Simple Table Example



<html>
<head>
<title>Simple Table Example</title>
</head>
<body>

<table border="2">
<tr>
<th>S.No.</th>
<th>Name</th>
<th>Class</th>
</tr>

<tr>
<td>1.</td>
<td>Rajpoot</td>
<td>MCA 5th</td>
</tr>

<tr>
<td>2.</td>
<td>Jay</td>
<td>MCA 3rd</td>
</tr>

<tr>
<td>3.</td>
<td>Singh</td>
<td>MCA</td>
</tr>

<tr>
<td>4.</td>
<td>Rajpoot</td>
<td>BCA</td>
</tr>

</table>

</body>
</html>