
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to draw lines using HTML5 Canvas?
The HTML5 <canvas> tag is used to draw graphics, animations, etc. using scripting. It is a new tag introduced in HTML5. Use the lineTo() method to draw lines using HTML5 canvas.
You can try to run the following code to learn how to draw lines using HTML5 Canvas
Example
<!DOCTYPE html> <html> <head> <title>HTML5 Canvas Tag</title> </head> <body> <canvas id="newCanvas" width="400" height="300" style="border:1px solid #000000;"></canvas> <script> var c = document.getElementById('newCanvas'); var ctx = c.getContext('2d'); // Drawing lines ctx.beginPath(); ctx.moveTo(30, 30); ctx.lineTo(180, 100); ctx.moveTo(30, 10); ctx.lineTo(260, 100); ctx.stroke(); </script> </body> </html>
Output
- Related Articles
- How to draw a star by using canvas HTML5?
- How to draw grid using HTML5 and canvas or SVG?
- How to draw an oval in HTML5 canvas?
- How to draw large font on HTML5 Canvas?
- How to draw a rectangle on HTML5 Canvas?
- How to draw a Bezier Curve with HTML5 Canvas?
- How to draw a quadratic curve on HTML5 Canvas?
- Draw Bezier Curve with HTML5 Canvas
- Draw a shadow with HTML5 Canvas
- How to draw an SVG file on an HTML5 canvas?
- HTML5 Canvas drawings like lines are looking blurry
- Load image from url and draw to HTML5 Canvas
- HTML5 drawImage() method to draw image onto the canvas
- Draw part of an image inside HTML5 canvas
- Properties to create text using HTML5 Canvas

Advertisements