<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
var stage = acgraph.create("container");
// create the text style object
textStyle = {fontFamily: "Dancing Script", fontSize: "25px", color: "green", fontStyle: "italic"};
// create the text element
text = stage.text(20, 20, "This is my custom font", textStyle);