Run
❯
Run Code
Ctrl+Alt+R
Save Code
Ctrl+Alt+A
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <p contenteditable="true" onpaste="myFunction()">Try to paste something inside this paragraph.</p> <script> function myFunction() { alert("You pasted text!"); } </script> </body> </html>