mirror of
https://github.com/heyman/heynote.git
synced 2025-01-07 06:29:08 +01:00
22 lines
557 B
HTML
22 lines
557 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<meta name="color-scheme" content="light dark">
|
||
|
<title>Heynote</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
|
||
|
<script type="module">
|
||
|
import heynote from "./bridge.js";
|
||
|
window.heynote = heynote;
|
||
|
</script>
|
||
|
<script type="module" src="main.js"></script>
|
||
|
<script src="./math.js"></script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|