<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
// create a stage
var stage = acgraph.create("container");
// draw a circle
stage.circle(200, 250, 100);
// create a square behind the Deathly Hallows symbol
stage.rect(25, 50, 350, 300);
// draw a triangle
stage.path().moveTo(25, 350)
.lineTo(200, 50)
.lineTo(375, 350)
.close();
// draw a wand in the middle
stage.path().moveTo(200,50)
.lineTo(200,350);