Guest User

Untitled

a guest
Mar 24th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.51 KB | Source Code | 0 0
  1. <html>
  2.   <head>
  3.     <title>Bookmark my Wiki</title>
  4.     <script>
  5.       window.onload=function(){document.getElementById('c').contentEditable='true';}
  6.     </script>
  7.     <style>
  8.       #c{padding:.5em}
  9.     </style>
  10.   </head>
  11.   <body>
  12.     <a
  13.      href="javascript:window.location='data:text/html;base64,'+btoa(document.documentElement.outerHTML)"
  14.      >encode</a
  15.    >
  16.     <div id="c" contenteditable="true">
  17.       <h1>This is editable.</h1>
  18.       <div>Stuff goes here.</div>
  19.     </div>
  20.   </body>
  21. </html>
Add Comment
Please, Sign In to add comment