landing-page/src/index.html

31 lines
720 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Welcome to KarlOS!</title>
2025-08-18 16:08:27 +02:00
<style>
html {
color-scheme: light dark;
}
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
line-height: 1.5;
}
</style>
</head>
<body>
2025-08-18 16:08:27 +02:00
<h1>Welcome to KarlOS!</h1>
<p>
<em>KarlOS</em> is a student effort in Karlsruhe to create a hobbyist Operating System from scratch.
The current goal of the project is to develop a simple monolithic kernel for 64-bit Intel / AMD PCs,
which could serve as a platform for experimentation in the future.
</p>
<h2>Sitemap</h2>
<ul>
<li><a href="https://karlsruhe-os.de/code/">Our Repositories (ForgeJo)</a></li>
<li><a href="/impressum.html">Impressum</a></li>
</ul>
</body>
</html>