block by cmackay 4c4603a3a462b4eb9bd9

fresh block

Full Screen

block builder test

index.html

<!DOCTYPE html>
<head>
  <meta charset="utf-8">
  <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
</head>

<body>

  <script>
    console.log("you are now rocking with d3", d3);
    
    var svg = d3.select('body')
    	.append('svg')
    	.attr('width', 800)
    	.attr('height', 600);
    
    svg.append('rect')
    	.attr('width', 100)
      .attr('height', 100)
    	.attr('fill', 'blue');
    
    svg.append('circle')
    	.attr('cx', 26)
    	.attr('cy', 128)
    	.attr('r', 20)
    
    
  </script>
</body>