Skip to content

Instantly share code, notes, and snippets.

@evilnapsis
Created January 17, 2016 22:42
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 evilnapsis/75878fb51c2caacdcaac to your computer and use it in GitHub Desktop.
Save evilnapsis/75878fb51c2caacdcaac to your computer and use it in GitHub Desktop.
<html>
<head>
<body>
<script>
var body = document.body;
var h1 = document.createElement("h1");
h1.innerHTML = "Hola Mundo!";
body.appendChild(h1);
</script>
</head>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment