function load_webring() { const webring_url = "https://aidang.cc/webring/https://jjanzen.ca"; const webring_container = document.getElementById("cssa-webring-container"); fetch(webring_url) .then((response) => response.json()) .then((obj) => { const webring_html = `
"Official" CSSA Webring
`; webring_container.innerHTML = webring_html; }); } window.onload = load_webring();