write html code to create table name - aman , class -10 , color red
Answers
Answered by
0
Answer:
<table border="1px">
<tr>
<th>Name</th>
<th>Class</th>
<th>Color</th>
</tr>
<tr>
<td>aman</td>
<td>10</td>
<td>red</td>
</tr>
</table>
Result:
Attachments:
Similar questions