Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created April 18, 2014 07:47
Show Gist options
  • Save z-------------/11030081 to your computer and use it in GitHub Desktop.
Save z-------------/11030081 to your computer and use it in GitHub Desktop.
var font = "Comic Sans MS"; // set what font you want
// the easy way
document.body.style.fontFamily = font;
// the more robust but slightly more complicated way
var allElements = document.querySelectorAll("*");
for (i=0;i<allElements.length;i++) {
allElements[i].style.fontFamily = font;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment