Untitled
unknown
plain_text
a year ago
434 B
7
Indexable
DOCTYPE html>
<html>
<head>
<title>
strokeText()
</title>
</head>
<body>
<center>
<canvas id="mycanvas" width="1000" height="150"></canvas>
</center>
<script>
var canvas = document.getElementById('mycanvas');
var ctx = canvas.getContext('2d');
ctx.font = '50px serif';
ctx.lineWidth = 3;
ctx.strokeStyle = 'blue';
ctx.strokeText('Jain College of BBA BCA & Commerce', 50, 90);
</script>
</body>
</html>
Editor is loading...
Leave a Comment