Last active
April 16, 2020 05:42
-
-
Save CWKSC/75786036d53f4f6f861b05ebda2e1876 to your computer and use it in GitHub Desktop.
Change page font family to Microsoft JhengHei by js
This file contains 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
document.querySelectorAll('*').forEach(e => e.style.fontFamily = "Microsoft JhengHei"); |
This file contains 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
document.querySelectorAll('*').forEach(e => { | |
e.style.fontFamily = "Microsoft JhengHei"; | |
e.style.fontWeight = "bold"; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment