HTML Table
HTML Table: Html tables can arrange data like text, images, links and other tables etc, in rows and columns of cells. An html table defines with table tag. Table row is defined with the <tr> tag. <tr> tag is used to create table rows. Table header is defined with the <th> tag. <th> tag si used to represent table headings. By default table headings are bold and centered. A data cell is defined with the <td> tag. <td> cell is used to create data cells. <!DOCTYPE html> <html> <head><title>HTML Table</title></head> <body> <table width="500px"> <tr> <th>Name</th> <th>Ph. NO</th> <th>Salary</th> </tr> <tr> <td>Saleem</td> <td>5649532</td> <td>500$</td> </tr...