Use your browser as Notepad
We all uses notepad or sticky note or some editor to take immediate notes on something like code snippet, ideas, blog content, todo. Recently I came to know that we can use our browser just like notepad. The trick hacks around Data URI scheme and html contenteditable attribute. All you need to do is type the following code into the browser's URL bar: data : text / html , < html contenteditable > It will make your page as editable just like notepad. If you want to save your content, do the usual browser save( CMD+S for OSX). It will save your content as html file. You can also bookmark above data url to make it easier. Editor with little bit styles by bichiliad data : text / html , < html contenteditable >< style > body { color : # 333 ; width : 960 px ; margin : 0 auto ; display : block ; height : 100 % ; font - size : 36 px ; padding : 20 px ;} < /style...