Computer Science, asked by amanshiriwas6266, 6 months ago

1.
The tag which allows the user to insert a table in a web page.​

Answers

Answered by heenadabas06
10

Answer:

<table> tag and its attributes are <tr> , <th>, <td>

Answered by ankhidassarma9
0

Answer:

To insert a table on a Web page, a user should use <table> tag.

Explanation:

  • The <table> tag is used to defines an HTML table.
  • An HTML table consists of one <table> tag element and one or more <tr>, <th>, and <td> elements.
  • The <tr> element defines a table row, where as the <th> element defines a table header, and the <td> tag element defines a table cell.
  • An HTML table may also contains <caption>, <colgroup>, <thead>, <tfoot>, and <tbody> .
  • HTML table tag is used to display data in tabular form (row * column). There can be many columns in a row.
  • HTML tables are used to manage the layout of the web page e.g. header section, footer section, navigation bar, body content  etc.
  • The HTML tables allow web authors to arrange  text, images, links, other tables, etc. into rows and columns of cells.
Similar questions