-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdemo.html
More file actions
25 lines (25 loc) · 884 Bytes
/
demo.html
File metadata and controls
25 lines (25 loc) · 884 Bytes
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
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<script src="lib/jquery.js" type="text/javascript"></script>
<script src="lib/lexer.js" type="text/javascript"></script>
<script src="lib/lexicon.js" type="text/javascript"></script>
<script src="lib/POSTagger.js" type="text/javascript"></script>
<script src="lib/main.js" type="text/javascript"></script>
<title>POS Tagger</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<form id="pos" method="post">
<label for="txt">Text for Tagging</label><br />
<textarea rows="20" cols="72" name="txt" ></textarea><br />
<input type="submit" value="Tag text" />
</form>
<hr />
<p id="result">
Results will appear here.
</p>
</body>
</html>