HTML table tags
The table is a matrix of rows and columns and one area formed due to interaction of a row and a column is called cell
To create a table on the web page the table beginning tag is <table>and </table>tag it is used to ending the tag.
Output
The table is a matrix of rows and columns and one area formed due to interaction of a row and a column is called cell
To create a table on the web page the table beginning tag is <table>and </table>tag it is used to ending the tag.
<html> <head> <title> HTML Table </title> </head> <body> <table border="6"> <caption align="bottom"> </caption> <tr> <td>This is left cell row1</td> <td>This is right cell row1</td> </tr> <tr> <td>This is left cell row2</td> <td>This is right cell row2</td> </tr> </table> </body> </html> |
Output
This is left cell row1 | This is right cell row1 |
This is left cell row2 | This is right cell row2 |
0 comments:
Post a Comment