index.html 715 B

12345678910111213141516171819202122232425
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link href="https://unpkg.com/[email protected]/css/xterm.css" rel="stylesheet">
  7. <script src="https://unpkg.com/[email protected]/lib/xterm.js"></script>
  8. <title>XTerm demo</title>
  9. <script src="xtermdemo.js"></script>
  10. </head>
  11. <body>
  12. <div id="xterm" style="width: 100%; height: 80vh; background-color: black;">
  13. </div>
  14. <div>
  15. <input type="text" id="edtInput">
  16. <button id="btnSend">Send</button>
  17. </div>
  18. <script>
  19. rtl.showUncaughtExceptions=true;
  20. window.addEventListener("load", rtl.run);
  21. </script>
  22. </body>
  23. </html>