Computer Science, asked by vandu2sweet, 3 months ago

write html code to create table name - aman , class -10 , color red ​

Answers

Answered by 22soubhikbiswas
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