26 lines
734 B
HTML
26 lines
734 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link rel="stylesheet" href="https://esm.sh/@xterm/xterm/css/xterm.css" />
|
|
<link rel="stylesheet" href="./style.css" />
|
|
|
|
<title>Document</title>
|
|
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"@xterm/xterm": "https://esm.sh/@xterm/xterm",
|
|
"@xterm/addon-fit": "https://esm.sh/@xterm/addon-fit"
|
|
}
|
|
}
|
|
</script>
|
|
<script src="./index.js" type="module"></script>
|
|
</head>
|
|
<body>
|
|
<my-terminal></my-terminal>
|
|
</body>
|
|
</html>
|
|
|