RevelaOS/index.html
ThinLiquid 04ccdf1442
feat: created an actual kernel and bootloader
BREAKING CHANGE: `process.kernel.loadLibrary('lib/VirtualFS')` replaced by `process.fs`

re #151
2024-01-22 13:16:10 +00:00

12 lines
350 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FlowOS</title>
<link rel="shortcut icon" href="./src/assets/flow.png" type="image/png">
</head>
<body>
<script src="./src/bootloader.ts" type="module"></script>
</body>
</html>