Last active
December 20, 2022 12:03
-
-
Save tuxracer/1b38ef5fb1348e03b43c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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