-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
55 lines (54 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
</head>
<body style="background-color: #222">
<header>
<h1>Oxey's layouts</h1>
</header>
<article>
<section>
This is where I'll keep all my layouts worth remembering. I have a few categories:
<h4>Absolutely worth using:</h4>
<div class="layout-list">
<ul>
<li><a href="stronk/index.html">Stronk</a></li>
<li><a href="dhorf/index.html">Dhorf</a></li>
<li><a href="sturdy/index.html">Sturdy</a></li>
</ul>
</div>
<h4>For a specific audience:</h4>
<div class="layout-list">
<ul>
<li><a href="noctum/index.html">Noctum</a></li>
<li><a href="compound/index.html">Compound</a></li>
</ul>
</div>
<h4>Old, do not recommend these anymore:</h4>
<div class="layout-list">
<ul>
<li><a href="dvarf/index.html">Dvarf</a></li>
<li><a href="hands_up/index.html">Hands Up</a></li>
<li><a href="crest/index.html">Crest</a></li>
<li><a href="hands_right/index.html">Hands Right</a></li>
</ul>
</div>
<p>
There is also the <a href="playground/index.html">layout playground</a>. This lets you:
<ul>
<li>Drag and drop swaps.</li>
<li>Rightclick to disable/enable keys for analysis.</li>
<li>See the changes you make in the stats displayed below.</li>
<li>Choose from a variety of languages. More will be added sometime in the future!</li>
</ul>
</p>
</section>
</article>
</body>
</html>