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
Zakarya affe6bc585 Many changes to the website
Overhauled the mobile page menu to actually be intuitive
Fixed the video download menu (dark theme and a typo)
Head tags are now consistent between pages
Added alt texts to all images, and proper HTML formatting
A few wording changes here and there
A new link to Colormatic Git
2025-01-14 13:40:43 -08:00

42 lines
1.5 KiB
HTML

<!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");
$("#footer").load("/component/footer.html");
});
</script>
</head>
<body>
<div id="particle-container"></div>
<script src="/js/bg.js"></script>
<header id="navbar"></header>
<div style="margin-top: 8%;"></div><!-- Separator -->
<main>
<div class="heading">Featured Colormatic Studios Projects:</div>
<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>
<p>An actually good first person controller for the Godot Engine.</p>
</div>
<div class="hero panel">
<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>
<p>Not yet public.</p>
</div>
</main>
<div style="margin-top: 8%;"></div><!-- Separator -->
<footer id="footer"></footer>
</body>
</html>