MCQs > IT & Programming > HTML 5 > Assuming that some text needs to be written on an HTML5 canvas, select a replacement for the commented line below:

HTML 5 MCQs

Assuming that some text needs to be written on an HTML5 canvas, select a replacement for the commented line below:
<canvas height="200" id="e" width="200"></canvas>
<script>
var canvas = document.getElementById("e");
//insert code here
context.fillStyle = "blue";
context.font = "bold 16px Arial";
context.fillText("Zibri", 100, 100);
</script>

Answer

Correct Answer: var context = canvas.getContext("2d");

Explanation:

Note: This Question is unanswered, help us to find answer for this one

HTML 5 Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

HTML 5 Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it