tools/notes/index.html
2025-02-05 21:27:13 +01:00

31 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
</head>
<body>
<div class="top">
<button id="new-note">New Note</button>
<button id="stop-note">Stop Editing</button>
<button id="export">Export JSON</button>
<label for="import">Import JSON</label>
<input type="file" id="import" accept="application/json">
<span id="editing"></span>
</div>
<div class="main">
<div class="left" id="left">
<div id="notes"></div>
</div>
<div class="editor" id="editor">
<textarea name="editor" id="editor-area" placeholder="Enter Text Here..."></textarea>
<h2 class="hint">Click on "New Note" and click on the new note to open it!</h2>
</div>
</div>
<script src="index.js"></script>
</body>
</html>