HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!DOCTYPE html> <html> <head> <title> Homepage </title> </head> <body> <h2>Creating a line on canvas.</h2> <canvas id="canvas3" height="150" width="200" style="border: 1px solid gray"> your browser do not support canvas. </canvas> <script> var canv = document.getElementById("canvas3"); var ctx = canv.getContext("2d"); ctx.moveTo(0, 0); ctx.lineTo(200, 150); ctx.stroke(); </script> </body> </html>
RunĀ