25 Jan 2020 Dessiner un texte by webmaster | posted in: canvas | 0 Votre navigateur ne supporte pas le HTML5 canvas tag. Le code expliqué <canvas id= »myCanvas8″ width= »800″ height= »400″ style= »border:1px solid #d3d3d3; »> Votre navigateur ne supporte pas le HTML5 canvas tag. </canvas> <script> canvas = document.getElementById(« myCanvas8 »); context = canvas.getContext(« 2d »); context.font = « 60px Comic Sans MS »; context.fillStyle = « red »; context.textAlign = « center »; context.fillText(« Ateliers inversés !!! », canvas.width/2, canvas.height/2); </script>