forked from nikkifurls/simplepwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (103 loc) · 3.21 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Icons and Colors -->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./manifest.json">
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#181818">
<link rel="shortcut icon" href="./favicon.ico">
<meta name="msapplication-TileColor" content="#181818">
<meta name="msapplication-TileImage" content="./mstile-144x144.png">
<meta name="msapplication-config" content="./browserconfig.xml">
<meta name="theme-color" content="#181818">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Simple PWA</title>
<link rel="canonical" href="" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SEO and Social Sharing and SEO -->
<meta name="description" content="Latin vocab researcher - German" />
<meta name="robots" content="noodp" />
<meta name="author" content="Julian Grass">
<meta name="keywords" content="progressive web app, progressive web application, pwa, pwa progressive web app, pwa progressive web application, progressive app, dictionary, a-z, latin, german, words, word, book, online" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="ReVocab" />
<meta property="og:description" content="Latin - German vocab searcher" />
<meta property="og:url" content="https://mrahmalo.github.io/LatinVocabResearcher-German/" />
<meta property="og:site_name" content="Latin vocab searcher" />
<!-- Styles -->
<link rel="stylesheet" href="style.css">
<!-- Javscript -->
<script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker && navigator.serviceWorker.register("./sw.js");
});
}
</script>
<script defer src="./main.js"></script>
</head>
<html>
<head>
<title>ReVocab -- Latein - Deutsch</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#myInput").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#myTable tr").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
</script>
</head>
<body>
<style>
#myInput {
height: 35px; /* set the height to 50 pixels */
font-size: 15px;
}
</style>
<h2>ReVocab -- Latein - Deutsch</h2>
<input id="myInput" type="text" placeholder="Wort eingeben..." style="width: 200px;">
<br><br>
<style>
table {
font-size: 15px;
}
</style>
<table id="myTable" class="rounded-table">
<tr>
<th >Verb</th>
<th >Stammformen</th>
<th >Übersetzung</th>
</tr>
</thead>
<tbody>
<tr>
<td>clamare</td>
<td>clamo, clamavi</td>
<td>schreien</td>
</tr>
<tr>
<td>tacere</td>
<td>taceo, tacui</td>
<td>schweigen</td>
</tr>
<tr>
<td>lacere</td>
<td>iacio, ieci</td>
<td>liegen</td>
</tr>
<tr>
<td>patere</td>
<td>pateo, patui</td>
<td>offen stehen</td>
</tr>
</table>
</body>
</html>