| <!DOCTYPE html> |
| <html> |
| <head> |
| <title>Query creator demo</title> |
| <meta charset="utf-8" /> |
| <style type="text/css" rel="stylesheet"> |
| * { |
| outline: none; |
| } |
| td { |
| cursor: pointer; |
| } |
| input { |
| display: block; |
| width: 80%; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="matchinfo"> |
| <table> |
| <thead> |
| <tr> |
| <th>Foundry</th> |
| <th>Layer</th> |
| <th>Der</th> |
| <th>älteste</th> |
| <th>lebende</th> |
| <th>Baum</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr tabindex="0"> |
| <th>corenlp</th> |
| <th>p</th> |
| <td>ART</td> |
| <td>ADJA</td> |
| <td>ADJA</td> |
| <td>NN</td> |
| </tr> |
| <tr tabindex="0"> |
| <th>opennlp</th> |
| <th>p</th> |
| <td>ART</td> |
| <td>ADJA</td> |
| <td>ADJA</td> |
| <td>NN</td> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| </body> |
| <script src="query-creator.js"></script> |
| </html> |