Making a table using HTML Example 2

Another example on how to make a table in html.

 

<html>
<head>
<title> CUN130101342 </title>
</head>
<body>
<table border="2">
<tr>
<th>SNO</td>
<th>Particular</td>
<th> No. of items </td>
<th> Price </td>
</tr>
<tr>
<td>1</td>
<td>Hard Disks</td>
<td>2</td>
<td>4000.00</td>
</tr>
<tr>
<td>2</td>
<td>Monitors</td>
<td>3</td>
<td>15000.00</td>
</tr>
<tr>
<td>3</td>
<td>CD ROM</td>
<td>2</td>
<td>1000.00</td>
</tr>
<tr>
<td>4</td>
<td>DVD Writers</td>
<td>4</td>
<td>6000.00</td>
</tr>
</body>
</html>

 

Leave a Reply

Your email address will not be published.