Computer Science, asked by alimohammad81625, 3 months ago

a) Tables are defined with the _________ tag​


krishajobanputra24: bye
alimohammad81625: bye
alimohammad81625: who are you
krishajobanputra24: it's not chat
krishajobanputra24: it's comments
krishajobanputra24: so plz stop it
alimohammad81625: okk
krishajobanputra24: like my answer
alimohammad81625: now you stop the chat
krishajobanputra24: ok

Answers

Answered by krishajobanputra24
0

Answer:

Each table data/cell is defined with a <td> tag. By default, the text in <th> elements are bold and centered. By default, the text in <td> elements are regular and left-aligned.

Answered by rajurajjan246
2

Answer:

The <table> tag defines an HTML table.

Each table row is defined with a <tr> tag. Each table header is defined with a <th> tag. Each table data/cell is defined with a <td> tag.

By default, the text in <th> elements are bold and centered.

By default, the text in <td> elements are regular and left-aligned.

Explanation:

<table style="width:100%">

<tr>

<th>Firstname</th>

<th>Lastname</th>

<th>Age</th>

</tr>

<tr>

<td>Jill</td>

<td>Smith</td>

<td>50</td>

</tr>

<tr>

<td>Eve</td>

<td>Jackson</td>

<td>94</td>

</tr>

</table>

Similar questions