Spaces:
Running
Running
File size: 2,165 Bytes
909b565 |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
<!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 {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
#testLinkContainer a {
width: fit-content;
display: inline-block;
margin-bottom: 10px;
color: #333;
text-decoration: none;
background-color: #ddd;
padding: 10px;
border-radius: 5px;
}
#testLinkContainer a:hover {
background-color: #eee;
}
textarea {
width: 90%;
height: 40vh;
margin-bottom: 20px;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
input {
display: block;
margin-bottom: 20px;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
#editableDiv {
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
}
#editableDiv div {
padding: 10px;
}
</style>
</head>
<body>
<div style="height: 300px;"></div>
share the note via url:
<div id="url_div"></div>
<div id="notebin_editor"></div>
<div style="height: 3000px;"></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>
|