Computer Science, asked by borakritiraj, 11 months ago

how to create table in html by saving it​

Answers

Answered by seemagerataneja
4

to create a table in HTML you need to apply the table tag . there is a simple example..

<table>

<tr>

<th>hello

</th>

</tr>

<tr>

<td>hello2

</td>

</tr>

</table>

the output will be like this :

&lt;table&gt;</p><p>&lt;tr&gt;</p><p>&lt;th&gt;hello</p><p>&lt;/th&gt;</p><p>&lt;/tr&gt;</p><p>&lt;tr&gt;</p><p>&lt;td&gt;hello2</p><p>&lt;/td&gt;</p><p>&lt;/tr&gt;</p><p>&lt;/table&gt;

Similar questions