| 12345678910111213141516171819202122232425 | 
							- <!DOCTYPE html>
 
- <html lang="en">
 
- <head>
 
-     <meta charset="UTF-8">
 
-     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
-     <title>Document</title>
 
-     <style>
 
-         #canv{
 
-             background-color: black;
 
-         }
 
-     </style>
 
- </head>
 
- <body>
 
-     <canvas id="canv" width="400" height="400"></canvas>
 
-     <script>
 
-         var canv = document.querySelector('#canv');
 
-         var ctx = canv.getContext('2d');
 
-         ctx.strokeStyle = 'white';
 
-         ctx.lineWidth = 5;
 
-         ctx.moveTo(100,100);
 
-         ctx.lineTo(200,200);
 
-         ctx.stroke();
 
-     </script>
 
- </body>
 
- </html>
 
 
  |