evilthings/templates/index.html

20 lines
647 B
HTML
Raw Normal View History

2023-09-18 09:15:19 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Import htmx even if not used yet -->
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
<meta charset="UTF-8">
<title>Title</title>
<style>
2024-01-08 15:58:43 +00:00
@import url('https://fonts.googleapis.com/css2?family=Cantarell&display=swap');
2023-09-18 09:15:19 +00:00
* {
font-family: Cantarell, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to Evilthings.net</h1>
<p style="font-size: x-small">This webpage is still under construction</p>
<p>Evilthings will be the studio name under which <a href="https://mstar.evilthings.net">mStar</a> will release software</p>
</body>
</html>