Skip to content

Instantly share code, notes, and snippets.

@lee0741
Created January 30, 2013 17:47
Show Gist options
  • Save lee0741/4675087 to your computer and use it in GitHub Desktop.
Save lee0741/4675087 to your computer and use it in GitHub Desktop.
HTML: Browser notepad. Inspired by https://coderwall.com/p/lhsrcq
data:text/html;charset=utf-8,
<html>
<head>
<title>My Editor</title>
<style type="text/css">
body, textarea {
background: #002b36;
margin: 0;
}
textarea {
color: #839496;
height: 100%;
width: 100%;
padding: 2em 4em;
border: none;
outline: none;
font-size: 2em;
font-family: monaco;
line-height: 1.4;
}
</style>
</head>
<body>
<textarea spellcheck="false" autofocus />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment