Skip to content

Instantly share code, notes, and snippets.

@tonkotsuboy
Created February 20, 2020 08:31
Show Gist options
  • Select an option

  • Save tonkotsuboy/9074b4adc00c1e8820ab0a0a96f75518 to your computer and use it in GitHub Desktop.

Select an option

Save tonkotsuboy/9074b4adc00c1e8820ab0a0a96f75518 to your computer and use it in GitHub Desktop.
FireYourSite.js
const linkElement = document.createElement("link");
linkElement.rel = "stylesheet";
linkElement.href =
"https://fonts.googleapis.com/css?family=Noto+Sans+JP:900&display=swap&effect=fire-animation";
document.head.insertAdjacentElement("beforeend", linkElement);
for (const childElement of document.body.querySelectorAll("*")) {
childElement.style.fontFamily = `"Noto Sans JP", sans-serif`;
childElement.classList.add("font-effect-fire-animation");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment