mirror of
https://github.com/HeyPuter/puter
synced 2024-11-15 14:26:10 +00:00
23 lines
646 B
HTML
23 lines
646 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
<script src="__SDK_URL__"></script>
|
||
|
<link rel="stylesheet" href="xterm.css">
|
||
|
<link rel="stylesheet" href="normalize.css">
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
<script src="config.js"></script>
|
||
|
<script src="bundle.js"></script>
|
||
|
<script>
|
||
|
document.addEventListener('DOMContentLoaded', async () => {
|
||
|
main_term();
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|