25 lines
638 B
HTML
25 lines
638 B
HTML
<!-- 暂时不用宋体了
|
|
<style>
|
|
:root {
|
|
--sys-font-family: "Noto Serif SC";
|
|
--zh-font-family: "Noto Serif SC";
|
|
--base-font-family: "Noto Serif SC";
|
|
--code-font-family: "Noto Serif SC";
|
|
--article-font-family: "Noto Serif SC";
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
(function () {
|
|
const customFont = document.createElement("link");
|
|
customFont.href =
|
|
"https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700&display=swap";
|
|
|
|
customFont.type = "text/css";
|
|
customFont.rel = "stylesheet";
|
|
|
|
document.head.appendChild(customFont);
|
|
})();
|
|
</script>
|
|
-->
|
|
|