Can someone show me how I can add an image to work as a button.
http://i.imgur.com/hARohAn.png
<button id="playButton" style="cursor: pointer; font-family:Tahoma; font-weight: bold;font-size:14px; background-color:green;color:blue;padding:13px 6px " onclick="
var button = document.getElementById('playButton');
var player = document.getElementById('player');
if (player.paused) {
playButton.innerHTML = 'Pause';
playButton.style.backgroundColor = '#cc333f';
playButton.style.padding = '13px 0px';
player.play();
} else {
playButton.innerHTML = 'Play';
playButton.style.backgroundColor = '#cc333f';
playButton.style.padding = '13px 6px';
player.pause();
}">
Play</button>