Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created September 25, 2018 23:58
Show Gist options
  • Select an option

  • Save topherPedersen/c7c405704908fada73be2804fdbb07b2 to your computer and use it in GitHub Desktop.

Select an option

Save topherPedersen/c7c405704908fada73be2804fdbb07b2 to your computer and use it in GitHub Desktop.
TheUselessWeb.com Starter Template
<!DOCTYPE html>
<html>
<body>
<img src="crazymuppet.jpg">
<button id="play-btn" onClick="playAudio();">PLAY</button>
<script>
var laugh = new Audio("laugh.mp3");
function playAudio() {
laugh.play();
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment