Skip to content

Instantly share code, notes, and snippets.

@indolering
Created October 25, 2016 20:34
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 indolering/93aa99d20117b537dac1231837827598 to your computer and use it in GitHub Desktop.
Save indolering/93aa99d20117b537dac1231837827598 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>loading</title>
</head>
<body style="width: 100%; height: 100%">
<script>
let h1 = document.createElement("h1");
let text = document.createTextNode("Hello World!");
h1.appendChild(text);
document.body.appendChild(h1);
console.log("Hello World!");
document.title = "Hello World!";
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment