-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
18 lines (18 loc) · 1.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="A simple and free to use online notepad, that records what you typed in your web browser, and your browser 𝘰𝘯𝘭𝘺.">
<meta name="keywords" content="Notepad,Unicode,VFDan">
<link rel="icon" href="Notepad.png">
<title>Notepad</title>
<link href="https://fonts.googleapis.com/css?family=Quattrocento:700&display=swap&subset=cyrillic,cyrillic-ext,greek,latin-ext,vietnamese" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tonsky/FiraCode@5/distr/fira_code.css">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<textarea placeholder="Type here..." onkeyup="localStorage.setItem('content', document.getElementById('textarea').value);" label="notepad" id="textarea" data-gramm_editor="false" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" autofocus></textarea>
<a href="javascript:((localStorage.getItem('dark')=='false') ? localStorage.setItem('dark', true) : localStorage.setItem('dark', false));location.reload();" id="toggle">Toggle dark mode</a>
<script src="script.js"></script>
</body>
</html>