Created
September 25, 2018 23:58
-
-
Save topherPedersen/c7c405704908fada73be2804fdbb07b2 to your computer and use it in GitHub Desktop.
TheUselessWeb.com Starter Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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