-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (23 loc) · 1.06 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
<!DOCTYPE html>
<html lang="de_DE">
<head>
<meta charset="utf-8">
<meta name="author" content="NeoCode">
<meta name="description" content="Stadt Land Fluss Lösung in kompakter Form">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="SLFTool">
<meta name="mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="icon.png">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@8"></script>
<title>SLF Tool</title>
</head>
<body onload="init()" oncontextmenu="return false;">
<input type="text" id="letter" name="letter" placeholder="Buchstabe" size="1" maxlength="1" autofocus onkeydown="change()">
<div id="content"></div>
</body>
</html>