mart-w.de/layouts/partials/footer/components/custom-font.html
2024-04-03 03:44:07 +02:00

12 lines
307 B
HTML

<script>
(function () {
const customFont = document.createElement('link');
customFont.href = "/fonts/lato-font-3.0.0/css/lato-font.min.css";
customFont.type = "text/css";
customFont.rel = "stylesheet";
document.head.appendChild(customFont);
}());
</script>