forked from MichaelWehar/Open-Source-Spell-Checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (52 loc) · 2.13 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
63
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Open Source Spell Checker</title>
<meta name="description" content="This is a free client-side spell checking library written in JavaScript.">
<meta name="author" content="Michael Wehar">
<meta name="copyright" content="Michael Wehar">
<meta name="viewport" id="viewport" content="width=570">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
div.footer{
width: 400px;
font-size: 15px;
color: #444444;
max-height: 99999999px;
}
</style>
</head>
<body>
<center>
<br><br><br>
<h1>Open Source Spell Checker</h1>
<br><br><br>
<p style="width: 470px; text-align: left; font-size: 19px; max-height: 99999999px;"><b>Description:</b> This is a free client-side spell checker written in JavaScript. Visit our <a href="https://github.com/MichaelWehar/Open-Source-Spell-Checker">GitHub page</a>.</p>
<br><br><br>
<div class="input-group" style="width: 400px;">
<input autofocus="autofocus" style="font-size: 16px" type="text" id="lookupText" onchange="wordTyped()" oninput="wordTyped()" onpaste="wordTyped()" class="form-control" placeholder="Enter a word...">
</div>
<br><br>
<div id="results"></div>
<br><br>
<div class="footer">
<hr><br>
<center>
Related pages: <a href="https://WordofTheHour.org">Word of The Hour</a>, <a href="http://michaelwehar.com/wordlists/">Wordlists</a>
<br>
<p style="padding: 7px;">Created by: Michael Wehar.</p>
<br><br>
</center>
</div>
<br><br>
</center>
<script src="english_word_list.js"></script>
<script src="spellchecker.js"></script>
<script charset="UTF-8">
set_valid_word_list(english_word_list);
</script>
<script src="ui.js"></script>
</body>
</html>