Skip to content

Instantly share code, notes, and snippets.

@tuxracer
Last active December 20, 2022 12:03
Show Gist options
  • Save tuxracer/1b38ef5fb1348e03b43c to your computer and use it in GitHub Desktop.
Save tuxracer/1b38ef5fb1348e03b43c to your computer and use it in GitHub Desktop.
els = document.querySelectorAll('*');
for (var i = els.length - 1; i >= 0; i--) {
var font = "Curlz MT"
, el = els[i]
;
el.style.fontFamily = font;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment