mirror of https://github.com/hearot/notes
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
512 B
HTML
14 lines
512 B
HTML
3 years ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.css" />
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.js"></script>
|
||
|
</head>
|
||
|
<body id="terminal" style="background-color:black;">
|
||
|
</body>
|
||
|
<script>
|
||
|
var term = new Terminal();
|
||
|
term.open(document.getElementById('terminal'));
|
||
|
term.writeln('I\'m sorry, there is nothing here at the moment.');
|
||
|
</script>
|
||
|
</html>
|