simple-note/index.html
2024-01-26 20:57:59 +07:00

42 lines
No EOL
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="westtle">
<meta name="description" content="A very simple notepad that you can use.">
<meta name="keywords" content="notepad, note, notepad online, simple note, simple notepad">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simple Note</title>
<link rel="icon" type="image/x-icon" href="#">
<!-- <link rel="stylesheet" type="text/css" href="assets/styles/style.min.css"> -->
</head>
<body>
<main>
<div id="simple-note">
<h2>Simple Note</h2>
<div class="__title">
<input type="text" placeholder="Title...">
</div>
<div class="__body">
<textarea placeholder="Your text here..."></textarea>
</div>
<div class="__function">
<button class="_select-all">Select all</button>
<button class="_delete-all">Delete all</button>
<!-- Appear when clicked. -->
<button class="_delete-confirm">Click again to delete</button>
<!-- -------------------- -->
<button class="_save-to-local">Save to local</button>
</div>
</div>
<div id="notice">
Repository: <a href="https://github.com/westtle/simple-note" target="_blank">https://github.com/westtle/simple-note</a>
</div>
</main>
<!-- <script type="text/javascript" src="assets/scripts/script.min.js"></script> -->
</body>
</html>