35. Write HTML code to produce following table:
A
C
E
B
D
F
Answers
Answered by
0
Answer:
<html>
<body>
<h2>Basic HTML Table</h2>
<table style="width:100%">
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>80</td>
</tr>
</table>
</body>
</html>
this is an example of table codes
hope it helps you :) :)
Similar questions