Computer Science, asked by RATHIJAAT, 1 year ago

what attributes should be used in HTML to to create a table...?

Answers

Answered by riyavishal2005
2

Answer:

notepad

Explanation:

You can create a table using the <table> element. Inside the <table> element, you can use the <tr> elements to create rows, and to create columns inside a row you can use the <td> elements. You can also define a cell as a header for a group of table cells using the <th> element.

Answered by Anonymous
1

The <table> tag is used to create a table. In HTML a table is considered as a group of rows containing each a group of cells.

...

Below are some of the tags used in the table.

<tr> Tag. ...

<td> Tag. ...

<th> Tag. ...

<bgcolor> Tag. ...

<caption> Tag. ...

Cell Spanning. ...

<thead> Tag. ...

<tbody> Tag.

Similar questions