diff options
Diffstat (limited to '_content/index.html')
| -rw-r--r-- | _content/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/_content/index.html b/_content/index.html new file mode 100644 index 0000000..328e00a --- /dev/null +++ b/_content/index.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> + <head> + <title>Project KBBI</title> + + <script type="text/javascript" src="kbbiclient.js"></script> + <script type="text/javascript" src="index.js"></script> + <style> + .kelas-kata, + .contoh { + margin-left: 2em; + } + </style> + </head> + <body> + <h1>Proyek KBBI</h1> + <p> + Proyek implementasi API untuk Kamus Besar Bahasa Indonesia. + </p> + + <h2>Definisi kata</h2> + <label> + Daftar kata: + <input type="text" id="kata" maxlength="64" /> + </label> + <button onclick="cariDefinisi()">Cari definisi</button> + <p class="note"> + Catatan: gunakan koma untuk mencari lebih dari satu kata. + </p> + + <div id="definisi-result"></div> + </body> +</html> |
