Skip to content

Instantly share code, notes, and snippets.

@munkhorgil
Last active November 1, 2019 04:55
Show Gist options
  • Save munkhorgil/5cc12565379fd93115b25e89c93dfb5b to your computer and use it in GitHub Desktop.
Save munkhorgil/5cc12565379fd93115b25e89c93dfb5b to your computer and use it in GitHub Desktop.
One line browser editor/note
data:text/html;charset=utf-8,<title>In browser editor</title><style>body{background:lightgray;black:white;padding: 100px;font-family:JMH Typewriter, serif;font-size:2rem}</style><body contenteditable onkeypress="myFunction()"><audio id="audio" src="https://www.soundjay.com/communication/sounds/typewriter-line-break-1.mp3" ></audio>
Typwriter <script>function myFunction() {var audio = document.getElementById("audio");audio.play();}</script></body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment