14 lines
505 B
HTML
14 lines
505 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Miller code editor</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="/src/app/index.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="node_modules/@xterm/xterm/css/xterm.css" />
|
|
</head>
|
|
<body class="dark:scheme-dark dark:bg-neutral-800 dark:text-gray-100">
|
|
<script type="module" src="/src/app/renderer.ts"></script>
|
|
</body>
|
|
</html>
|