how to center something from top and bottom in bootstrap code example
Example 1: html center image vertically bootstrap
mx-auto mt-auto mb-auto
Example 2: how to place text at custom position on canvas
<!doctype html>
<html>
<head>
<body>
<canvas></canvas>
<script>
var canvas=document.querySelector('canvas');
var context=canvas.getContext(2d);
context.textAlign = 'center';
context.fillStyle = 'blue';
context.fillText('Helllo Word!', 10, 50);
</script>
</body>
</head>
</html>