27 lines
896 B
HTML
27 lines
896 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- google fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet" />
|
|
|
|
<!-- import main stylesheet -->
|
|
<link rel="stylesheet" href="/src/styles/app.scss" />
|
|
|
|
<title>webshell</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div id="terminal"></div>
|
|
</div>
|
|
|
|
<!-- run main script -->
|
|
<script type="module" src="/src/app.ts"></script>
|
|
</body>
|
|
</html>
|