TABLE There are three types of Table
- <tr> : used to create rows.
- <th> : used to create of headings.
- <td> : used to give data of table.
There are three types of Borders
- No border
- Border 1
- Border 2
Syntax of border is
< table border="..." > Program
INPUT
<html> <head> <body> <table border="2"> <tr> <th>Website Name<th> <td>HTML</td> </tr> <tr> <th>Website Name<th> <td>HTML</td> </tr> </table> </body> </html>
OUTPUT
![]()