1350772.html (338B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 addEventListener("DOMContentLoaded", () => { 6 try { 7 document.designMode = 'on'; 8 document.removeChild(document.documentElement); 9 document.appendChild(document.createElement("p")); 10 document.execCommand("insertParagraph", false, null); 11 } catch(e) { 12 } 13 }); 14 </script> 15 </head> 16 </html>