12 lines
307 B
HTML
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>
|