-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.67 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
<!DOCTYPE html>
<html lang="de">
<head>
<!--<script src="https://code.jquery.com/jquery-latest.js"></script>-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js" integrity="sha384-NaWTHo/8YCBYJ59830LTz/P4aQZK1sS0SneOgAvhsIl3zBu8r9RevNg5lHCHAuQ/" crossorigin="anonymous"></script>
<script src="js/index.js"></script>
<script src="js/replace.js"></script>
<script src="js/port.js"></script>
<script src="js/parse.js"></script>
<script src="js/buttons.js"></script>
<script src="js/analyse.js"></script>
<link rel = "stylesheet" type="text/css" href = "css/caret.css">
<link rel = "stylesheet" type="text/css" href = "css/styling.css">
<link rel = "stylesheet" type="text/css" href = "css/flags.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Skripts</title>
</head>
<body>
<header>
<input type="file" multiple id="loadfile" accept = ".json" value ="File..."><button id="loadfileButton">Load File</button>
<br>
<input type="file" multiple id="loadhtml" accept = ".htm" value ="Word..."><button id="loadhtmlButton">Load html from MSW</button>
<br>
<button id="newDoc">New File</button>
<hr/>
</header>
<div id="pinstop"></div>
<div id="buttonbar" class="stick"></div>
<br/>
<div id="flags"></div>
<div id="editor">
<table>
<thead>
<tr><th>Person</th><th>Sprechakt</th><tr>
</thead>
<tbody id="table">
</tbody>
</table>
</div>
<datalist id="speakerlist">
</datalist>
</body>
</html>