Skip to content

Instantly share code, notes, and snippets.

@shelajev
Created April 13, 2016 10:16
Show Gist options
  • Save shelajev/9b30a6f9142641b3c2dbc881dc51c676 to your computer and use it in GitHub Desktop.
Save shelajev/9b30a6f9142641b3c2dbc881dc51c676 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Hello World</title>
</head>
<body>
<div id="container"></div>
<script>
document.body.onload = function(){
var container = document.getElementById("container");
container.innerHTML = '<h1>"Hello, world!"</h1>';
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment