Change Hebrew Font in Matching Questions on Canvas (JavaScript)
This tutorial demonstrates how to use JavaScript to change the Hebrew font in the Matching Questions on Canvas.
Canvas does not allow us to change fonts for the matching questions.
Using this setup, we can make the font change on our Browsers.
The JavaScript code used in this tutorial (there is a slight improvement to the code used in the tutorial):
var x = document.querySelectorAll('.pull-left label');
var i;
for (i = 0; i < x.length; i++) {
x[i].style.fontFamily = "Times New Roman";
x[i].style.fontSize = "36px";
}
Mac users can make a one-time setup and use a hotkey to change the font. Click this link to see the tutorial.