Write the produre to create a 2×2 table In HTML
Answers
Answered by
0
Answer:
<html>
<body>
<table>
<tr>
<th>Name</th>
<th>Role</th>
</tr>
<tr>
<td>Jeremy</td>
<td>Designer</td>
</tr>
<td>Jennifer</td>
<td>Developer</td>
<tr>
</tr>
</table>
</body>
</html>
Explanation:
Similar questions