Home | Computer Science

<
Table

Defination

<table> is used to create tables.


TABLE There are three types of Table
There are three types of Borders
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