How to Used Border in Table

<html>
<body>
<h4>Normal Border:-</h4>
<table border="1">
<tr>
     <td>First</td>
	 <td>Row</td>
</tr>
<tr>  
     <td>second</td>
	 <td>Row</td>
</tr>
</table>

 <h4>Thick Border:-</h4>
<table border="8">
<tr>
     <td>First</td>
	 <td>Row</td>
</tr>
<tr>  
     <td>second</td>
	 <td>Row</td>
</tr>
</table>
<h4>Very Thick Border:-</h4>
<table border="15">
<tr>
     <td>First</td>
	 <td>Row</td>
</tr>
<tr>  
     <td>second</td>
	 <td>Row</td>
</tr>
</table>
</body>
</html>

OUTPUT

(Visited 68 times, 1 visits today)
Share with Friends :

Leave a Reply

Your email address will not be published. Required fields are marked *