mirror of
https://github.com/michivonah/website-v3.git
synced 2025-12-22 21:36:28 +01:00
6 lines
No EOL
223 B
JavaScript
6 lines
No EOL
223 B
JavaScript
var head = document.getElementsByTagName("head")[0];
|
|
var link = document.createElement("link");
|
|
link.rel = "stylesheet";
|
|
link.type = "text/css";
|
|
link.href = "akar-icons-fonts/src/css/akar-icons.css";
|
|
head.appendChild(link); |