canvas will not load in live demo or on the browsers
I am trying out canvas and can not see it in the live load or any browsers. here is the code.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script>
window onload = function(){
var myCanvas = document.getElementById('myCanvas')
var ctx = myCanvas.getContext("2d");
ctx.beginPath();
ctx.arc(260,150,100,0, math PI*2, true);
ctx.closePath();
ctx.fill()l
}
</script>
</head>
<body>
<canvas id ="myCanvas" width="400" height="300" style="border:10px solid #000000;"></canvas>
</body>
</html>
I tried several different types in canvas. what is the problem?
thanks
jen
