2024-07-24 13:39:34 -07:00
<!doctype html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< script src = "/js/jquery.js" > < / script >
< link rel = "stylesheet" href = "/css/style.css" >
< link rel = "icon" type = "image/svg" href = "/img/colormatic_logo.svg" >
< title > Colormatic< / title >
< script >
$(document).ready(function(){
$("#navbar").load("/component/navbar.html")
})
$(document).ready(function(){
$("#footer").load("/component/footer.html")
})
< / script >
< / head >
< body >
2024-12-31 23:09:19 -08:00
< div id = "particle-container" > < / div >
< script src = "/js/bg.js" > < / script >
2024-07-24 13:39:34 -07:00
< header id = "navbar" > < / header >
2025-01-01 09:38:35 -08:00
< div style = "margin-top: 8%;" > < / div > <!-- Separator -->
2024-07-24 13:39:34 -07:00
< main >
2024-09-27 19:40:00 -07:00
< div class = "heading" > Featured Colormatic Studios Projects:< / div >
2025-01-02 14:23:57 -08:00
< div class = "hero panel" >
2025-01-04 19:21:10 -08:00
< h1 > < a href = "https://git.colormatic.org/ColormaticStudios/quality-godot-first-person" target = "_blank" rel = "noopener noreferrer" > Quality First Person Controller< / a > < / h1 >
2024-07-24 13:39:34 -07:00
< p > An actually good first person controller for the Godot Engine.< / p >
< / div >
2025-01-02 14:23:57 -08:00
< div class = "hero panel" >
2024-07-24 13:39:34 -07:00
< h1 > ColorQuest< / h1 >
< p > A simple MMORPG in your browser.< / p >
2024-07-24 15:12:19 -07:00
< p > Currently in < a href = "https://en.wikipedia.org/wiki/Software_release_life_cycle#Pre-alpha" target = "_blank" rel = "noopener noreferrer" > pre-alpha< / a > .< / p >
2024-07-24 13:39:34 -07:00
< p > Not yet public.< / p >
< / div >
< / main >
2025-01-01 09:38:35 -08:00
< div style = "margin-top: 8%;" > < / div > <!-- Separator -->
2024-07-24 13:39:34 -07:00
< footer id = "footer" > < / footer >
< / body >
< / html >