-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
43 lines (43 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="description" content="An open source Dictionary based on Google's Unofficial Dictionary API" />
<title>Dictionary</title>
<link rel="apple-touch-icon" href="apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114.png" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript" src="dictionary.js"></script>
<!--[if IE 8]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header>
<span>Dictionary</span>
</header>
<div id="github"><a href="https://github.com/easisee" target="_blank"><img src="http://a248.e.akamai.net/assets.github.com/img/71eeaab9d563c2b3c590319b398dd35683265e85/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub"></a></div>
<div id="toolbox">
<div id="search">
<form action="javascript:search.submit($('#query').val());">
<select id="lang"></select>
<input type="text" id="query" autofocus="autofocus" />
<button type="submit">Define</button>
<button type="button" id="example" onclick="toggleexample();">Example</button>
</form>
</div>
</div>
<div id="loading">
<span class="box">
<span class="spinner"></span>
</span>
</div>
<div id="dictionary"></div>
<footer>
<span>Powered by <a href="http://googlesystem.blogspot.com/2009/12/on-googles-unofficial-dictionary-api.html" target="_blank">Google's Unofficial Dictionary API</a> & <a href="http://www.wiktionary.org/w/api.php" target="_blank">MediaWiki API</a></span>
</footer>
</body>
</html>