Skip to content

Instantly share code, notes, and snippets.

@theo-armour
Last active September 1, 2015 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theo-armour/d131d1de71022256fbfe to your computer and use it in GitHub Desktop.
Save theo-armour/d131d1de71022256fbfe to your computer and use it in GitHub Desktop.
simple html
<!doctype html>
<html lang=en >
<head>
<title>Howdy</title>
<meta charset=utf-8 />
</head>
<body>
<script>
document.body.style.cssText = ' font: bold 12pt monospace; ';
var info = document.body.appendChild( document.createElement( 'div' ) );
info.innerHTML = '<a href="" ><h1>' + document.title + '</h1></a>' +
'<div id=msg1 >bbbbbbbbbbbbbbbbbb</div>' +
'';
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment