-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="description" content="An online dictionary for Basa Numo (the conlang).">
<title>Basa Numo - English Dictionary</title>
<!-- Add jQuery and its plugin for CSV parsing -->
<script src="jquery-3.7.0.min.js"></script>
<script src="jquery.csv.min.js"></script>
<script src="data.js"></script>
<script src="logic.js"></script>
<script src="index.js"></script>
<link type="text/css" rel="stylesheet" href="reset.css" />
<link type="text/css" rel="stylesheet" href="index.css" />
<link type="image/x-icon" rel="shortcut icon" href="favicon.svg" />
</head>
<body>
<header>
<div class="title left">
BASA <br />
<b>NUMO</b>
</div>
<form id="search-bar">
<input id="search-box"
type="search"
placeholder="put a word or phrase here"
autofocus
spellcheck="false"
/>
<button id="search-button">
<img alt="" src="search-icon.svg" />
search
</button>
</form>
<div class="title right">
TO <br />
<b>ENGLISH</b>
</div>
</header>
<main>
</main>
<footer>
<a href="https://sites.google.com/view/basanumo/">official site</a>
<a href="https://github.com/aninovo/numo-leksikitab">github</a>
</footer>
</body>
</html>