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 69 times, 1 visits today)