On my css file, I've set the following:
body {
font-family: Roboto, sans-serif;
}
And as expected, it has applied to the entire html except for a "textarea" box which for some reason has applied what seems to be the consolas font.
My current fix for this is to select the specified element and set the same line of code posted above.
textarea {
font-family: Roboto, sans-serif;
}
Any suggestions?