2026-02-02 07:38:35 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" / >
< title > SplatNet - Splatoon's multiplayer service hub< / title >
2026-03-23 04:22:09 +01:00
< meta name = "description" content = "A hub for player interaction for the Nintendo Wii U game Splatoon." / >
< meta property = "og:site_name" content = "SplatNet" / >
< meta property = "og:title" content = "SplatNet - Splatoon's multiplayer service hub" / >
< meta property = "og:type" content = "website" / >
< meta property = "og:description" content = "A hub for player interaction for the Nintendo Wii U game Splatoon." / >
< meta property = "og:image" content = "https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg" / >
< meta content = "SplatNet" name = "apple-mobile-web-app-title" / >
2026-02-02 07:38:35 +01:00
< link rel = "icon" href = "../favicon.ico" type = "image/x-icon" / >
< link rel = "stylesheet" href = "styles.css" / >
2026-03-18 21:13:52 +01:00
< script src = "/assets/jquery-1.9.1.js" > < / script >
2026-02-02 07:38:35 +01:00
< / head >
< body >
< div id = "header-container" > < / div >
< div id = "squid-container" >
< canvas id = "squid-canvas" width = "1920" height = "1080" > < / canvas >
< / div >
< div id = "loading-overlay" class = "loading-overlay" >
< canvas id = "loading-canvas" width = "100" height = "100" > < / canvas >
2026-02-03 05:13:31 +01:00
< div id = "loading-text" >
< img src = "/assets/en/svg/text/wait/tx_loading-dccf3fb801ca859f2d17992f5cd7da62995c1fe81a306dd103398ef7c0e25b70.svg" alt = "Loading" >
< / div >
2026-02-02 07:38:35 +01:00
< / div >
2026-03-08 07:34:21 +01:00
< div class = "main-wrapper" >
2026-02-04 05:07:59 +01:00
< div class = "content" >
< div class = "logo-left-align" >
< div id = "stage-header-logo" >
< img class = "bg-layer" src = "../assets/en/svg/ui/bg_h1-62e768f2a1ca52f993b5953c78d46bc53b35b70df7f8e13619a982f8f10ab750.svg" >
< img class = "icon-layer" src = "../assets/en/svg/ui/ico_ranking-c89e570ab4d08a764d285e453423188b1976895b3feacf031e3f231b1506b441.svg" >
< img class = "label-layer" src = "../assets/en/svg/text/scene/rank/tx_ranking_wht-f79b9c472757006700455a8b74eaa4e50fee7c316373c98d873e0769f9bdb6d9.svg" >
< / div >
2026-03-18 21:13:52 +01:00
< div class = "equipmentsubtitle-text" id = "mode-subtitle" >
2026-03-08 07:34:21 +01:00
Win battles to raise your weekly rank! Rankings are reset every Sunday at midnight! (Your rank is calculated by multiplying number of wins X win rate.)
< / div >
2026-02-04 05:07:59 +01:00
< / div >
2026-03-18 21:13:52 +01:00
2026-03-22 16:51:18 +01:00
< div class = "mode-selection" style = "display: none;" >
2026-03-18 21:13:52 +01:00
< a href = "?mode=regular" class = "mode-button" id = "link-regular" >
< img id = "img-regular" src = "../assets/en/svg/ui/btn_tab_regular-40682de5f47922c608c0ddf6eddd44efcf4b0516092041cdb48977f777030487.svg" alt = "Turf War" >
< / a >
< a href = "?mode=gachi" class = "mode-button" id = "link-gachi" >
< img id = "img-gachi" src = "../assets/en/svg/ui/btn_tab_gachi-1ab8351babd76ea6dd8e23eb86293c8ceafaf23b9cae3001166fabf3a01011a7.svg" alt = "Ranked Battle" >
< / a >
2026-03-21 20:55:53 +01:00
< a href = "?mode=fes" class = "mode-button" id = "link-fes" >
< img id = "img-fes" src = "../assets/en/svg/ui/btn_tab_fes-f6f7d08ee7f4877df0c7b32998f6bad81fd3f8c28e287168dfffe7d6efb09f77.svg" alt = "Splatfest" >
< / a >
< / div >
2026-03-22 16:51:18 +01:00
< div class = "rank-glass-panel" style = "display: none;" >
2026-03-21 20:55:53 +01:00
< div class = "rank-header-area" >
2026-03-21 21:37:58 +01:00
< img id = "rank-mode-title" src = "/assets/en/svg/text/scene/rank/tx_splatfest-7a0ef00ee7f4877df0c7b32998f6bad81fd3f8c28e287168dfffe7d6efb09f77.svg" class = "splatfest-title-svg" >
2026-03-21 20:55:53 +01:00
< div class = "splatfest-subtitle" > Rice VS Bread< / div >
< / div >
< div id = "ranking-cards-container" > < / div >
2026-03-18 21:13:52 +01:00
< / div >
< div class = "stages-container" id = "stages-container" > < / div >
2026-02-04 05:07:59 +01:00
< / div >
2026-03-08 07:34:21 +01:00
< / div >
2026-03-18 21:13:52 +01:00
< script src = "/assets/general.js" > < / script >
2026-02-02 07:38:35 +01:00
< script src = "rank.js" > < / script >
< / body >
< / html >