function onload() { redirect() sdocument.getElementById("body").style.fontFamily = "system-ui, sans-serif"; } function toggleTheme() { // Obtains an array of all // elements. // Select your element using indexing. if (document.getElementById("body").style.fontFamily !== "standardGalactic") { document.getElementById("body").style.fontFamily = "standardGalactic"; } else{ document.getElementById("body").style.fontFamily = "system-ui, sans-serif"; } } function redirect() { let chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ|Brave/.test( navigator.userAgent ); let disclaimer = `
`; if (chromium) window.location.replace("/nochrome"); }