What is a table? Which tag is used to create tables in HTML? Please answer
Answers
Answer:
1. A table is an arrangement of data in a row and columns, or possibly in a more complex structure.
2. HTML <table>tag. when writing in HTML, the <table> tag is a block element used to create a table. It is useful when you want to represent data using row and column.
Explanation:
PLEASE LIKE MY ANSWER AND MARK AS BRANILIST ..
FOLLOW ME...
Answer:
table:- An HTML structure for creating rows and columns on a Web page. The Table tag defines the overall table and the Table Row (TR) tag is used to build each row.
tags:- To create table in HTML, use the <table> tag. A table consist of rows and columns, which can be set using one or more <tr>, <th>, and <td> elements. A table row is defined by the <tr> tag. To set table header, use the <th> tag
Explanation: