custom-font.html 337 B

1234567891011
  1. <script>
  2. (function () {
  3. const customFont = document.createElement('link');
  4. customFont.href = "https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap";
  5. customFont.type = "text/css";
  6. customFont.rel = "stylesheet";
  7. document.head.appendChild(customFont);
  8. }());
  9. </script>