hugo-theme-stack/layouts/partials/footer/components/custom-font.html
2023-10-29 11:31:10 +00:00

11 lines
369 B
HTML

<script>
(function () {
const customFont = document.createElement('link');
customFont.href = "https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;900&family=Roboto:wght@300;900&display=swap";
customFont.type = "text/css";
customFont.rel = "stylesheet";
document.head.appendChild(customFont);
}());
</script>