How would you add a background image to the following table cell?
<table> <tr> <td>Cell</td> </tr> </table>
Add background="image.jpg" to the <td> tag
background="image.jpg"
<td>
Add style="background-image:url('image.jpg')" to the <td> tag
style="background-image:url('image.jpg')"
Add background-image:url('image.jpg') to the <td> tag
background-image:url('image.jpg')
Add bg="image.jpg" to the <td> tag
bg="image.jpg"