-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
25 lines (25 loc) · 733 Bytes
/
notes.html
File metadata and controls
25 lines (25 loc) · 733 Bytes
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
<!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">
<!-- simplest ever notepad for a developer by sithumc -->
<title>Notes</title>
<style>
body { height: 100%; }
textarea { width: 100%; height: 90vh; }
</style>
</head>
<body>
<textarea id="stext" onchange="save()" cols="250" rows="50"></textarea>
<script>
window.onload = function load () {
document.getElementById("stext").innerHTML = localStorage.getItem("sithtext");
}
function save(){
localStorage.setItem("sithtext", document.getElementById("stext").value);
}
</script>
</body>
</html>