< div class = "navbar" >
< div class = "navbaritem" > < a href = "/" > HOME< / a > < / div >
< div class = "navbaritem" > < a href = "/blog.html" > BLOG< / a > < / div >
< div class = "navbaritem" > < a href = "/arcade.html" > ARCADE< / a > < / div >
< div class = "navbaritem" > < a href = "/stream.html" > STREAM< / a > < / div > < div id = "liveindicator" > < / div >
< div class = "navbaritem" > < a href = "/code.html" > CODING SERVICES< / a > < / div >
< div class = "socials" >
< div class = "navbaritem" > DISCORD< / div >
< div class = "navbaritem" > GITHUB< / div >
< div class = "navbaritem" > TWITCH< / div >
< div class = "navbaritem" > YOUTUBE< / div >
< div class = "navbaritem" > TWITTER< / div >
< / div >
< / div >
< script type = "text/javascript" >
function getLiveStatus() {
//document.getElementById("liveindicator").innerText="🔴 LIVE"
}
getLiveStatus()
< / script >
<!DOCTYPE html>
< html >
< head >
< link rel = "stylesheet" type = "text/css" href = "/reset.css" >
< link rel = "stylesheet" type = "text/css" href = "/sig.css" >
< meta charset = "UTF-8" >
< script type = "text/javascript" >
function loadCodeBackground() {
fetch("/codeBackground").then((data)=>data.text())
.then((data)=>{
document.getElementById("codeForeground").innerText=data
document.getElementById("codeBackground").innerText=data
})
}
loadCodeBackground();
< / script >
< / head >
< body >
< div class = "contentBody" >
SigPlace
-SigPlace
===
< br / > < br / >
< a href = "otherpage.html" > Other Page!< / a >
< / div > <!-- End Content Body -->
< div class = "codeForeground" id = "codeForeground" > < / div >
< div class = "codeBackground" id = "codeBackground" > < / div >
< / body >
< footer >
< / footer >
< / html >