This repository has been archived on 2025-01-29. You can view files and clone it, but cannot push or open issues or pull requests.
colormaticwebsite/index.html

42 lines
1.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2024-07-24 13:39:34 -07:00
<html lang="en">
<head>
<meta charset="UTF-8">
2024-07-24 13:39:34 -07:00
<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");
$("#footer").load("/component/footer.html");
});
2024-07-24 13:39:34 -07:00
</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">
<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>
<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>