Last active
January 24, 2025 01:20
-
-
Save Lincest/80297f88c5525d3f49bdbbbf8a9e5c75 to your computer and use it in GitHub Desktop.
memos-css (LXGW Font)
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
body{font-family: "LXGW WenKai Screen R", sans-serif !important;} |
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
function changeFont() { | |
const link = document.createElement('link'); | |
link.rel = 'stylesheet'; | |
link.type = 'text/css'; | |
link.href = 'https://cdnjs.cloudflare.com/ajax/libs/lxgw-wenkai-screen-webfont/1.5.0/lxgwwenkaiscreenr.min.css'; | |
document.head.append(link); | |
} | |
changeFont() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment