-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.html
38 lines (35 loc) · 1.01 KB
/
example.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css"/>
<link rel="stylesheet" href="src/TextTagger.css"/>
</head>
<body>
<div class="container">
<br/>
<div>
<h4>Legend</h4>
<span class="tagged person">Person</span>
<span class="tagged organization">Organization</span>
<span class="tagged policy">Policy</span>
<span class="tagged location">Location</span>
</div>
<hr/>
<div>
<div class="bg-info center-block" id="main"></div>
<span id="next" class="btn btn-link pull-right">Next</span>
</div>
<hr/>
<h4>Output</h4>
<div class="bg-success center-block" id="output"></div>
<hr/>
<h4>You Tagged: </h4>
<div id="tags-in-text"></div>
</div>
</body>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="example.js"></script>
<script src="src/TextTagger.js"></script>
</html>