-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.62 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 1.62 KB
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
<html><head>
<title>...</title>
<link rel="stylesheet" href="/css/khak.css" type="text/css" id="theme"></link>
<link rel="icon" href='/media/NPHotChoc.svg.png'></link>
</head>
<body style="font-family: monospace;
background-image: url('/media/things.svg')">
<h2 onmouseover="chbg()" onmouseout="chbg()">
Under Construction...
<image src="/media/moon.svg" id="themech"
width="30" height="30" title="change theme">
</image>
<script type="text/javascript" src="/js/theme.js">
</script>
<br>
</h2>
<ul class="fg">
<li>Fonts:
<a href="spiderwire.html" style="font-family: 'SpiderWireMono';">spiderwire</a>
<a href="befont.html" style="font-family: 'BefontSquare';">Befont</a>
<a href="poultre.html" style="font-family: 'poulTre';">Poultre</a>
</li>
<li><a href="turing.html">
A turing machine simulator
</a></li>
<li><a href="lisp.html">
A mapL REPL
</a></li>
<li><a href="lua.html">
Fengari/lua REPL
</a></li>
<li><a href="/UnMiRa/unmira.html">
UnMiRa Machine
</a></li>
<li><a href="/lohi/">
Create a personal wiki
</a></li>
<li><a href="/paste/">
Paste code in a few languages
</a></li>
</ul>
<script>
let sty = document.body.style;
let img = sty.backgroundImage;
sty.backgroundImage = null;
function chbg(){
sty.backgroundImage = sty.backgroundImage?null:img;
}
function hdbg(){
sty.backgroundImage = null;
}
</script>
</body>
</html>