plainpaste.html 773 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <title>PlainPaste</title>
  6. <style type="text/css" rel="stylesheet">
  7. body {
  8. margin: 0px;
  9. font-size:12px;
  10. background-color:#F0F0EE;
  11. }
  12. #textArea {
  13. width:320px;
  14. height:250px;
  15. border:1px solid #000000;
  16. overflow: auto;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div style="margin-bottom:10px;">请使用快捷键(Ctrl+V)把内容粘贴到下面的方框里。</div>
  22. <textarea id="textArea" style="width:320px;height:250px;border:1px solid #000000;"></textarea>
  23. </body>
  24. </html>