Answers for "text and table on html code"

1

How to code table headings in html

<th></th>
Posted by: Guest on February-27-2021
2

Table in html

<table><caption>Phone numbers</caption>
<thead>
	<tr>
		<th>Name</th>
		<th colspan="2">Phone</th>
	</tr>
</thead>
<tbody>
	<tr>
		<td>John</td>
		<td>577854</td>
		<td>577855</td>
	</tr>
	<tr>
		<td>Jack</td>
		<td>577856</td>
		<td>577857</td>
	</tr>
</tbody>
<tfoot>
	<tr>
		<td> </td>
		<td>Personal</td>
		<td>Office</td>
	</tr>
</tfoot>
</table>
Posted by: Guest on May-22-2021

Browse Popular Code Answers by Language