Files
MonkeyCode/ui/index.html
2025-06-25 18:02:45 +08:00

22 lines
540 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MonkeyCode</title>
<style type="text/css">
@font-face {
font-family: 'Mono';
src: url('/Mono.ttf');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>