html
html
1
2
3
4
5
6
7
8
9
10
<html>
<head></head>
<body>
<canvas id="canvaas></canvas>
<footer>
<button onclick="func()">right</button>
<button onclick="funk()">down</button>
</footer>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
#header{
width:100px;
height:100px;
border-style:double ;
position:relative ;
left:10px;
background-color:#00488A;}
footer{
position:absolute ;
top:480px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
var c = document.getElementById("canvaas");
var ctx=c.getContext("2d");
var xpos=0;
var ypos=0;
ctx.fillRect(0,0,100,100);
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run