mirror of
https://github.com/tiennm99/miti99.git
synced 2026-09-17 16:20:43 +00:00
Includes Noto Sans from Google Fonts and sets it as the article font family via CSS variable. This improves typography consistency for articles.
26 lines
846 B
HTML
26 lines
846 B
HTML
<style>
|
|
/* Overwrite CSS variable */
|
|
:root {
|
|
--article-font-family: "Noto Sans", var(--base-font-family);
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
(function () {
|
|
const customFont = document.createElement('link');
|
|
customFont.href = "https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap";
|
|
|
|
customFont.type = "text/css";
|
|
customFont.rel = "stylesheet";
|
|
|
|
document.head.appendChild(customFont);
|
|
}());
|
|
</script>
|
|
<script type="text/javascript">
|
|
(function(c,l,a,r,i,t,y){
|
|
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
|
|
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
|
|
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
|
|
})(window, document, "clarity", "script", "rhzxq223eq");
|
|
</script>
|