Skip to content

Instantly share code, notes, and snippets.

@pandafulmanda
Created November 9, 2015 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandafulmanda/c72580cf1ff93f7a5c08 to your computer and use it in GitHub Desktop.
Save pandafulmanda/c72580cf1ff93f7a5c08 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="http://d3js.org/d3.v3.min.js"></script>
</head>
<body>
<svg width="960" height="500"></svg>
<script>
d3.select("svg")
.append("rect")
.attr("width", 100)
.attr("height", 100)
.attr("fill", "red");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment