-->
Showing posts with label to draw square on canvas. Show all posts
Showing posts with label to draw square on canvas. Show all posts

Wednesday, July 22, 2020

HTML with CANVAS to draw square.

<html>

<head>

    <head>
        <title>
            html with canvas tag. It is used to draw graphics on HTML page. With this canvas tag, we use javascript to draw it.
        </title>
    </head>

    <body>
        <canvas id="square" width="200" height="200" style="border:7px dotted #000089;">
            <!--we always use canvas id for script-->
            <!--since we are going to draw square, we use attribute width and height with style/css-->
            <!-- here the width and height defines canvas size-->
            <!--since it has no border so-->
            <!--we can use different color with the help of css-->
        </canvas>


    </body>


</html>