Hugo-theme-stack/layouts/partials/footer/components/custom-font.html

11 lines
337 B
HTML
Raw Normal View History

2020-08-29 11:06:02 -04:00
<script>
(function () {
const customFont = document.createElement('link');
customFont.href = "https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap";
customFont.type = "text/css";
customFont.rel = "stylesheet";
document.head.appendChild(customFont);
}());
</script>