List attributes used for formatting table
Answers
Answer:
The <table> tag defines an HTML table. An HTML table consists of the <table> element and one or more <tr>, <th>, and <td> elements. The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell.
<table>
<tr>
<td>
<cellspacing>
<cellpadding>
Explanation:
An HTML table is defined with the <table> tag.
The HTML tables are created using the <table> tag in which the <tr> tag is used to create table rows and <td> tag is used to create data cells. The elements under <td> are regular and left aligned by default
The cellspacing attribute defines space between table cells, while cellpadding represents the distance between cell borders and the content within a cell.
#Learn more:
The attribute is used to specify the alignment of a table
https://brainly.in/question/2245305