-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 892 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr" onclick="focusInput()">
<head>
<!-- Set to yor own title -->
<title>Diefonk</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<!-- Only if you have an RSS feed -->
<link rel="alternate" type="application/rss+xml" href="/rss.xml">
<script src="Directory.js"></script>
<script src="utility.js"></script>
<script src="main.js"></script>
<noscript>
<style>
#output, #prompt, #input {
display: none;
}
</style>
</noscript>
</head>
<body onload="init()" onresize="setPrompt()">
<div id="output"></div>
<p id="prompt"></p>
<input type="text" id="input" autocomplete="off" spellcheck="false" onkeypress="handleInput(event)">
<noscript>
<p>This web page requires JavaScript</p>
</noscript>
</body>
</html>