
- HTML Tutorial
- HTML - Home
- HTML - Roadmap
- HTML - Introduction
- HTML - History & Evolution
- HTML - Editors
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Headings
- HTML - Paragraphs
- HTML - Fonts
- HTML - Blocks
- HTML - Style Sheet
- HTML - Formatting
- HTML - Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Frames
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Code Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Table Headers & Captions
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB & RGBA Colors
- HTML - HEX Colors
- HTML - HSL & HSLA Colors
- HTML - HSL Color Picker
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - Document Object Model (DOM)
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Character Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - <canvas> Tag
Introduction to <canvas> Tag
The HTML <canvas> tag is used to draw the graphics on a webpage, such as lines, shapes and animations through JavaScript. It provides a drawable region defined by width and height attributes. By default, the <canvas> tag is invisible and requires JavaScript to render visual elements.
The <canvas> tag can also be used for creating charts, data visualizations and other graphical content. However, it does not include any built-in drawing capabilities, everything needs to be programmatically specified.
Syntax
Following is the syntax of HTML <canvas> tag −.
<canvas> ... </canvas>
Attributes
HTML canvas tag supports Global and Event attributes of HTML. Accept some specipic attributes as well which are listed bellow.
Attribute | Value | Description |
---|---|---|
height | pixels | Specifies the height of the created canvas and the default value is 150. |
width | pixels | Specifies the width of the created canvas and Default value is 300. |
Example : Drawing a Circle
Lets look at the following example, where we are going to draw the circle using the <canvas> tag.
<!DOCTYPE html> <html> <body> <canvas id = "tutorial" height = "200" width = "210" style = "border:2px solid #8E44AD "> </canvas> <script> var x = document.getElementById("tutorial"); var y = x.getContext("2d"); y.beginPath(); y.arc(100, 100, 90, 0, 2 * Math.PI); y.stroke(); </script> </body> </html>
Example : Creating a Textual Graphics
Consider the following example, where we are going to draw the text on the canvas using the canvas tag along with the strokeText() method.
<!DOCTYPE html> <html> <body> <canvas id="tutorial" width="1000" height="100"></canvas> <script> var x = document.getElementById("tutorial"); var y = x.getContext("2d"); y.font = "60px verdana"; y.strokeStyle = "green"; y.strokeText("TUTORIALSPOINT", 20, 60); </script> </body> </html>
Example : Applying Linear Gradient
Following is the example where we are going to make the linear gradient and fill the rectangle with the gradient.
<!DOCTYPE html> <html> <body> <canvas id="tutorial" width="600" height="150" style="border:2px solid #D2B4DE;"> </canvas> <script> var x = document.getElementById("tutorial"); if (x.getContext) { var y = x.getContext("2d"); var gradient = y.createLinearGradient(11, 91, 210, 89); gradient.addColorStop(0, '#DE3163'); gradient.addColorStop(1, '#D5F5E3 '); y.fillStyle = gradient; y.fillRect(11, 12, 570, 120); } </script> </body> </html>
Example : Applying with fillText()
In the following example, we are going to use the fillText()method to draw text on the canvas.
<!DOCTYPE html> <html> <body> <canvas id="tutorial" width="500" height="200" style="border:3px solid #27AE60"> </canvas> <script> var x = document.getElementById("tutorial"); var y = x.getContext("2d"); y.font = "bold 35px solid"; y.fillText("TUTORIALSPOINT", 100, 100); </script> </body> </html>
Supported Browsers
Tag | ![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|---|
canvas | Yes 4.0 | Yes 9.0 | Yes 2.0 | Yes 3.1 | Yes 9.0 |