(1) Write an HTML code to create the following table:
Roll Number Name of Student Class
01
Atul Kumar 10 A
02
Bipul Sinha 10 A
03
Chetan Pal
10 A
Answers
Answered by
3
<table cell border="1" cellpadding="0" cellspacing="0">
<tr>
<th>Roll Number</th>
<th>Name of Student</th>
<th>Class</th>
</tr>
<tr>
<td>01</td>
<td>Atul Kumar</td>
<td>10 A</td>
</tr>
<tr>
<td>02</td>
<td>Bipul Sinha</td>
<td>10 A</td>
</tr>
<tr>
<td>03</td>
<td>Chetan Pal</td>
<td>10 A</td>
</tr>
</table>
Answered by
1
Answer:
USE HTML5
<table cell border="1" cellpadding="0" cellspacing="0">
<tr>
<th>Roll Number</th>
<th>Name of Student</th>
<th>Class</th>
</tr>
<tr>
<td>01</td>
<td>Atul Kumar</td>
<td>10 A</td>
</tr>
<tr>
<td>02</td>
<td>Bipul Sinha</td>
<td>10 A</td>
</tr>
<tr>
<td>03</td>
<td>Chetan Pal</td>
<td>10 A</td>
</tr>
</table>
Similar questions
Science,
1 month ago
Computer Science,
1 month ago
Social Sciences,
3 months ago
Geography,
3 months ago
Math,
9 months ago
Sociology,
9 months ago