Loading...
Online Notepad is a free, browser-based text editor for jotting notes, drafting posts, or pasting snippets without opening a desktop app or creating an account. Everything you type is auto-saved to your browser's local storage as you go, so your text is still there when you reload the page or come back later.
It's handy for quick captures on any device, temporary clipboards between apps, and distraction-free writing. When you're done you can download your work as a plain .txt file to keep a permanent copy on your computer.
The notepad uses the browser's localStorage API to persist your text on the device you're using. Each keystroke updates a string value stored under a fixed key, so when you return to the page the saved content is read back and restored into the editor. localStorage typically allows around 5 MB per origin, which is far more than enough for plain-text notes.
Because storage is tied to a specific browser and domain, your notes do not follow you to a different browser, an incognito window, or another computer. They also disappear if you clear your browsing data or site storage. For anything you want to keep long-term, download the .txt file, which is exported using a Blob and an object URL rather than a server round-trip.
The download produces standard UTF-8 encoded plain text with no formatting, tags, or metadata, so the file opens cleanly in Notepad, TextEdit, VS Code, or any other editor.
Yes, it is completely free with no account, sign-up, or login required. You can use it as often as you like.
Yes. Your text is saved only in your own browser's local storage and is never uploaded to a server. Nothing you type leaves your device unless you choose to download it.
Yes, as long as you use the same browser on the same device and don't clear your site data. Your text is restored automatically the next time you open the page.
Notes are lost if you clear your browser's cookies and site data, use a private/incognito window, or open the notepad in a different browser or on a different device. Download a .txt copy to keep anything important.
Notes download as a plain .txt file encoded in UTF-8, which opens in any text editor on Windows, macOS, Linux, iOS, or Android.
No, this is a plain-text notepad. It stores raw text only, which keeps files small and universally compatible, but it does not save fonts, colors, or styles.
Practically no. Browser local storage generally allows about 5 MB per site, which is roughly a few million characters of plain text, well beyond typical note-taking needs.