Computer Science, asked by kkgadhatra, 5 months ago

Write the produre to create a 2×2 table In HTML

Answers

Answered by sangeetabhanwar
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