blob: 8e2ff3734d1268adf19fef5bac08d7a5f9b6fe41 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<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>
|