Is there a way to place centered textboxes inside each of the colorful boxes in the image below?
Update: I've posted my feeble attempt below. Admittedly, design is not my forte and I'm struggling with this task.
p.s. To those who downvoted, thanks!
Check out the code snippet here
table{width: 585px; height: 585px; background-image: url('https://i.sstatic.net/uknk9.png');}
input{background-color: transparent; width: 100%; border-style:none; font-size: 32px;}
<table>
<tr>
<td></td>
<td valign="bottom" align="center"><input type="number" id="number" value="1" /></td>
<td></td>
</tr>
<tr>
<td align="right"><input type="number" id="number" value="2" /></td>
<td></td>
<td align="left"><input type="number" id="number" value="3" /></td>
</tr>
<tr>
<td></td>
<td valign="top" align="center"><input type="number" id="number" value="4" /></td>
<td></td>
</tr>
</table>