Zakarya
affe6bc585
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
36 lines
1.2 KiB
HTML
36 lines
1.2 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 - About</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: 10%;"></div><!-- Separator -->
|
|
|
|
<main>
|
|
<div class="hero panel">
|
|
<h1>Colormatic: A non-profit project for creation.</h1>
|
|
<p class="justify">Colormatic is a non-profit project for creating a curated collection of sub-projects that match a high-quality, high attention to detail standard.</p>
|
|
<p class="justify">Colormatic Studios is a creative studio dedicated to giving life to these maximum effort projects.</p>
|
|
</div>
|
|
</main>
|
|
|
|
<div style="margin-top: 10%;"></div><!-- Separator -->
|
|
<footer id="footer"></footer>
|
|
</body>
|
|
</html>
|