Skip to content

Instantly share code, notes, and snippets.

@ihorduchenko
Created January 18, 2017 21:02
Show Gist options
  • Save ihorduchenko/2b0d233f2152f7520470491b8f912800 to your computer and use it in GitHub Desktop.
Save ihorduchenko/2b0d233f2152f7520470491b8f912800 to your computer and use it in GitHub Desktop.
Load stylesheets using Javascript
<!-- Load CSS -->
<script>
function loadCSS(hf) {
var ms = document.createElement("link");
ms.rel = "stylesheet";
ms.href = hf;
document.getElementsByTagName("head")[0].appendChild(ms);
}
loadCSS("css/fonts.css"); //User Styles: Fonts
loadCSS("css/style.css"); //User Styles: Main
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment