Last active
December 14, 2015 21:39
-
-
Save jfreels/5152633 to your computer and use it in GitHub Desktop.
html template
This file contains 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> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
</head> | |
<body> | |
<h1>This is a test</h1> | |
<script> | |
d3.select("body").append("p").html("Hello World!"); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment