|
1 | 1 | <!DOCTYPE html> |
2 | | -<html lang="en"> |
3 | | - <head> |
4 | | - <meta charset="UTF-8" /> |
5 | | - <title>Unicode Search</title> |
6 | | - </head> |
7 | | - <body> |
8 | | - <script type="module" src="./index.ts"></script> |
9 | | - <div id="loading"> |
10 | | - <img src="/images/spinner.gif" alt="Loading..." /> |
11 | | - </div> |
12 | | - <div id="achtable" style="display:none"> |
13 | | - </div> |
14 | | - <div id="errdiv" class="d-none d-flex flex-column justify-content-center align-items-center w-100 h-100"> |
15 | | - <div class="alert alert-danger m-3" role="alert"> |
16 | | - <img class="pe-2" src="/images/stop.svg" alt="Error" width="100" height="100" /> |
17 | | - <span class="fs-4" id="errmsg"></span> |
18 | | - </div> |
19 | | - </div> |
20 | | - </body> |
| 2 | +<html lang="en" class="h-100"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8" /> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + <title>Unicode Search</title> |
| 8 | + <noscript> |
| 9 | + <style> |
| 10 | + .scriptonly { |
| 11 | + display: none; |
| 12 | + } |
| 13 | + </style> |
| 14 | + </noscript> |
| 15 | + <link href="/css/bootstrap.min.css" rel="stylesheet"> |
| 16 | +</head> |
| 17 | + |
| 18 | +<body class="h-100"> |
| 19 | + <script type="module" src="./index.ts"></script> |
| 20 | + <div class="scriptonly" id="loading"> |
| 21 | + <img src="/images/spinner.gif" alt="Loading..." /> |
| 22 | + </div> |
| 23 | + <div id="achtable" style="display:none"> |
| 24 | + </div> |
| 25 | + <div id="errdiv" class="d-none d-flex flex-column justify-content-center align-items-center w-100 h-100"> |
| 26 | + <div class="alert alert-danger m-3" role="alert"> |
| 27 | + <img class="pe-2" src="/images/stop.svg" alt="Error" width="100" height="100" /> |
| 28 | + <span class="fs-4" id="errmsg"></span> |
| 29 | + </div> |
| 30 | + </div> |
| 31 | + <noscript class="w-100 h-100"> |
| 32 | + <div class="d-flex flex-column justify-content-center align-items-center w-100 h-100"> |
| 33 | + <div class="d-flex flex-row align-items-center alert alert-danger m-3" role="alert"> |
| 34 | + <img class="pe-2" src="/images/stop.svg" alt="Error" width="100" height="100" /> |
| 35 | + <span class="fs-4">UnicodeSearch requires JavaScript. Try <a href="https://www.fileformat.info/info/unicode/char/">FileFormat.Info</a> to search without Javascript.</span> |
| 36 | + </div> |
| 37 | + </div> |
| 38 | + </noscript> |
| 39 | +</body> |
| 40 | + |
21 | 41 | </html> |
0 commit comments