-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (61 loc) · 2.2 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
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="la">
<head>
<title>Neolatino, lo dictionario albo</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<script src="jquery.js"></script>
<script src="jquery.csv.min.js"></script>
<script src="data.js"></script>
<script src="script.js"></script>
<script src="gui.js"></script>
<link rel="stylesheet" type="text/css" href="reset.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" type="image/svg" href="favicon.svg">
</head>
<body class="initial">
<header>
<div class="sub-header-text">
lo dictionario albo
</div>
<div class="header-text">
NEOLATINO
</div>
<form id="search-bar">
<input type="text" id="search-input" size="18"
placeholder="Cercare"/>
<button id="search-button" type="submit">
<img alt="Cercare" src="search.svg" />
</button>
</form>
</header>
<main id="contents">
<div class="info">
This is a lookup tool for a proposed interromance standard language known as NEOLATINO,
it allows you to translate its words to Spanish, French, Portuguese, Italian, Romanian and English.
<br />
It performs some morphological analysis so it can recognize inflected and prefixed words. Try looking up "misinformatas".
</div>
</main>
<footer>
<div class="info">
<a href="https://neolatino.eu/">
sito officiale
</a>
</div>
<div class="info">
<a href="https://neolatino.github.io/dictionario/">
dictionario officiale (rosso)
</a>
</div>
<div class="info">
<a href="https://github.com/aninovo/dictionario-neolatino">
github repository
</a>
</div>
</footer>
<script>
$('form#search-bar').on('submit', function (e) { searchHandler(); $(".initial").removeClass("initial"); return false;/* to prevent submitting */ });
</script>
</body>
</html>