Skip to content

My first Wiki

Muhammad Irtiza edited this page Jan 22, 2024 · 1 revision

Here a tip when using google fonts in your frontend projects

Testing wiki.

let cache: string = '';
fetch('https://fonts.googleapis.com/css2?family=Crimson+Pro&display=swap')
  .then(res => res.text())
  .then(css => {
    console.log(css);
    cache += css;
  }
)
Clone this wiki locally