Skip to content

Instantly share code, notes, and snippets.

@oliverbaptiste
Last active March 31, 2017 02:37
Show Gist options
  • Save oliverbaptiste/963fb2874564e4061282a83825aa72aa to your computer and use it in GitHub Desktop.
Save oliverbaptiste/963fb2874564e4061282a83825aa72aa to your computer and use it in GitHub Desktop.
HTML5 + JavaScript "Hello World"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"content="width=device-width, initial-scale=1">
<title>Hello, World!</title>
</head>
<body>
<script>
(function(){
var h1 = document.createElement('h1');
h1.appendChild(document.createTextNode('Hello, World!'));
document.body.appendChild(h1);
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment