-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
82 lines (76 loc) · 3.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DaxOS</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/mobile.css">
</head>
<body>
<header class="display_grid grid-col-1-3 arrange-down">
<div>
<div class="logo fully_centered">Dax</div>
</div>
<nav class="align-right center-vertically">
<ul class="arrange-down">
<li><a target="_blank" href="https://github.com/DaxKernel/Documentation">Documentation</a></li>
<li><a target="_blank" href="#">Github</a></li>
<li><a target="_blank" href="#">Features</a></li>
<li><a target="_blank" href="#">Demo</a></li>
</ul>
</nav>
</header>
<section class="display_grid grid-col-1-1 arrange-down">
<div class="intro-text">
<p> <span class="bold">DaxOS</span> is an hobbyist operating system and kernel developed to teach students systems programming and kernel development.</p>
</div>
<div class="text-center center-vertically">
<a href="https://github.com/DaxKernel/OS" class="btn">Fork from Github</a>
</div>
</section>
<section class="items display_grid grid-col-1-1 arrange-down">
<ul>
<li>Written in C & Assembly</li>
<li>Uses GNU Make</li>
<li>Monolithic kernel design</li>
<li>GPL V3 Licensed</li>
</ul>
<ul>
<li>Memory Management</li>
<li>Small Code Base</li>
<li>1280x720p Graphics Support</li>
<li>PS/2 Keyboard Driver</li>
</ul>
</section>
<section class="screen text-center">
<div class="screen-label">DaxOS in action</div>
<a href="./res/screenshot.png" target="_blank">
<img src="./res/screenshot.png">
</a>
</section>
<section>
<div class="text-center lang-desc">Check out our uber-cool tech stack</div>
<div class="languages">
<div class="language-c"></div>
<div class="language-make"></div>
<div class="language-python"></div>
<div class="language-shell"></div>
<div class="language-asm"></div>
</div>
<div class="language-legend">
<div class="legend-c">C</div>
<div class="legend-make">Makefiles</div>
<div class="legend-python">Python3</div>
<div class="legend-shell">sh</div>
<div class="legend-asm">x86 asm</div>
</div>
</section>
<footer class="text-center">
<div class="design-credit">Inspired heavily from the <a href="https://www.redox-os.org/">RedoxOS</a> website design</div>
Copyright © 2021 by <a href="#">DaxOS Developer</a>
</footer>
</body>
</html>