Create index.html
Browse files- src/index.html +12 -0
src/index.html
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!doctype html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/xterm.css" />
|
5 |
+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/xterm.js"></script>
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<div id="terminal"></div>
|
9 |
+
</head>
|
10 |
+
</body>
|
11 |
+
<script src="client.js"></script>
|
12 |
+
</html>
|