| Akron | e4da7ef | 2017-06-27 19:22:15 +0200 | [diff] [blame^] | 1 | <!DOCTYPE html> |
| 2 | <html> | ||||
| 3 | <head> | ||||
| 4 | <title>Query creator demo</title> | ||||
| 5 | <meta charset="utf-8" /> | ||||
| 6 | <style type="text/css" rel="stylesheet"> | ||||
| 7 | * { | ||||
| 8 | outline: none; | ||||
| 9 | } | ||||
| 10 | td { | ||||
| 11 | cursor: pointer; | ||||
| 12 | } | ||||
| 13 | input { | ||||
| 14 | display: block; | ||||
| 15 | width: 80%; | ||||
| 16 | } | ||||
| 17 | </style> | ||||
| 18 | </head> | ||||
| 19 | <body> | ||||
| 20 | <div class="matchinfo"> | ||||
| 21 | <table> | ||||
| 22 | <thead> | ||||
| 23 | <tr> | ||||
| 24 | <th>Foundry</th> | ||||
| 25 | <th>Layer</th> | ||||
| 26 | <th>Der</th> | ||||
| 27 | <th>älteste</th> | ||||
| 28 | <th>lebende</th> | ||||
| 29 | <th>Baum</th> | ||||
| 30 | </tr> | ||||
| 31 | </thead> | ||||
| 32 | <tbody> | ||||
| 33 | <tr tabindex="0"> | ||||
| 34 | <th>corenlp</th> | ||||
| 35 | <th>p</th> | ||||
| 36 | <td>ART</td> | ||||
| 37 | <td>ADJA</td> | ||||
| 38 | <td>ADJA</td> | ||||
| 39 | <td>NN</td> | ||||
| 40 | </tr> | ||||
| 41 | <tr tabindex="0"> | ||||
| 42 | <th>opennlp</th> | ||||
| 43 | <th>p</th> | ||||
| 44 | <td>ART</td> | ||||
| 45 | <td>ADJA</td> | ||||
| 46 | <td>ADJA</td> | ||||
| 47 | <td>NN</td> | ||||
| 48 | </tr> | ||||
| 49 | </tbody> | ||||
| 50 | </table> | ||||
| 51 | </div> | ||||
| 52 | </body> | ||||
| 53 | <script src="query-creator.js"></script> | ||||
| 54 | </html> | ||||