Last active
December 18, 2017 19:04
-
-
Save joao-parana/86d3699fdff3d587b0e580df7aa1ff4a to your computer and use it in GitHub Desktop.
SOMA 01 - Hello World
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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