mirror of https://github.com/hearot/notes
14 lines
512 B
HTML
14 lines
512 B
HTML
<!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> |