Skip to content

Instantly share code, notes, and snippets.

@joao-parana
Last active December 18, 2017 19:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joao-parana/86d3699fdff3d587b0e580df7aa1ff4a to your computer and use it in GitHub Desktop.
Save joao-parana/86d3699fdff3d587b0e580df7aa1ff4a to your computer and use it in GitHub Desktop.
SOMA 01 - Hello World
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="SOMA 01 - Hello World">
<title>SOMA 01 - Hello World</title>
</head>
<body>
<script src="https://d3js.org/d3.v4.min.js" charset="utf-8"></script>
<script>
d3.select('body')
.append('h1')
.text('Hello World!');
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment