Spaces:
Running
Running
File size: 1,010 Bytes
26ab438 be3ad36 26ab438 be3ad36 26ab438 909b565 be3ad36 26ab438 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<!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" />
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" href="./libs/toastui-editor.min.css" />
<title>groqnote</title>
<style>
body {
overflow-y: hidden;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
</style>
</head>
<body>
<div style="height: 30px;"></div>
<span id="url_div" style="overflow-x: hidden;"></span>
<div id="notebin_editor"></div>
<script src="./index.js" type="module"></script>
<script src="./esltool.js" type="module"></script>
<script src="./libs/toastui-editor-all.min.js"></script>
<script type="module" src="./notebin.js"></script>
</body>
</html>
|