<canvas width="1050" height="1200" id="canvas1">Sorry, no canvas available</canvas>//
<table id="qwerty">
<tr>
<td>Apple</td>
<td>Mango</td>
</tr>
<tr>
<td>Orange</td>
<td>Grape</td>
</tr>
</table>
<script>
var canvas = document.getElementById("canvas1")
var ctx = canvas.getContext("2d");
ctx.drawImage(img1,0,0);
</script>
I have a HTML table and a canvas with an image drawn on it. Now I need to add that table on to the same canvas Please help me with this