Computer Science, asked by prashant225, 1 year ago

write html.code for the following table.name ram,prashant,sita.class 6a,6b,6b.roll no. 2,5,7 respectively

Answers

Answered by siddhartharao77
4
<html>
<body>

<table border="2px solid grey" width="50%">

<tr>
<th>name</th>
<th>class</th>
<th>Roll no</th>
</tr>

<tr>
<td>Ram</td>
<td>6a</td>
<td>2</td>
</tr>

<tr>
<td>prashant</td>
<td>6b</td>
<td>5</td>
</tr>


<tr>
<td>sita</td>
<td>6b</td>
<td>7</td>
</tr>


</table>
</body>
</html>


siddhartharao77: Any doubts.. Ask me..Gud Luck
Rajdeep11111: GReat Bro.
siddhartharao77: :-)
Similar questions