skelton
Html
code posted
created at 03 Oct 11:30, updated at 01 Dec 20:21
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>Canvas tutorial</title> <script type="text/javascript"> function draw() { var canvas = document.getElementById('tutorial'); if (canvas.getContext) { var ctx = canvas.getContext('2d'); } } </script> </head> <body onload="draw();"> <h1> ddd </h1> <canvas id="tutorial" width="150" height="150"></canvas> </body> </html> |
470 Bytes in 3 ms with coderay