HTML_5


CANVAS

What is a canvas
 canvas element is used to draw graphics


<html>
<head>
<style>
#mycanvas{border:2px solid purpul}
</style>
</head>
<body>
<canvas id="mycanvas" width="100" height="100"></canvas>
</body>

</html>

OUTPUT

NOTE -- you can also drawing using canvas with javascript and also can writing font
---------------------------------------------------------------------------------------------------------------




No comments:

Post a Comment