forked from aceawan/aceawan.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFinnish_Lookup.html
128 lines (128 loc) · 4 KB
/
Finnish_Lookup.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
118
119
120
121
122
123
124
125
126
127
128
<html>
<head>
<title>Finnish Lookup Resources</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="content">
<h1>Finnish Lookup Resources</h1>
Webpage by <a href="https://github.com/rwdsubi">rwdsubi</a>
<br/>
<h2>Sanakirjat</h2>
<div class="row">
<div class="column">
<h3>
Wiktionary
</h3>
<input type="text" id="wikiSearchTxtBox" onkeypress="redirectToWiki(event)" autofocus />
<script type="text/javascript">
function redirectToWiki(textevent){
if(textevent.keyCode === 13){
window.location.href = "http://wiktionary.org/wiki/" + document.getElementById('wikiSearchTxtBox').value + "#Finnish";
}
}
</script>
</div>
<div class="column">
<h3>
Kielitoimiston sanakirja
</h3>
<input type="text" id="ksanakirjaTxtBox" onkeypress="redirectToKS(event)" autofocus />
<script type="text/javascript">
function redirectToKS(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://www.kielitoimistonsanakirja.fi/#/" + document.getElementById('ksanakirjaTxtBox').value;
}
}
</script>
</div>
<div class="column">
<h3>
Kielitomiston sanakirja 2018
</h3>
<input type="text" id="ksanakirja18TxtBox" onkeypress="redirectToKS18(event)" autofocus />
<script type="text/javascript">
function redirectToKS18(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://2018.kielitoimistonsanakirja.fi/" + document.getElementById('ksanakirja18TxtBox').value;
}
}
</script>
</div>
<div class="column">
<h3>Glosbe</h3>
<input type="text" id="glosbeTxtBox" onkeypress="redirectToGlosbe(event)" autofocus />
<script type="text/javascript">
function redirectToGlosbe(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://glosbe.com/fi/en/" + document.getElementById('glosbeTxtBox').value;
}
}
</script>
</div>
</div>
<br />
<h2>Pronunciation</h2>
<div class="row">
<div class="column">
<h3>
Forvo
</h3>
<input type="text" id="forvoSearchTxtBox" onkeypress="redirectToForvo(event)" autofocus />
<script type="text/javascript">
function redirectToForvo(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://forvo.com/word/" + document.getElementById('forvoSearchTxtBox').value + "/#fi";
}
}
</script>
</div>
</div>
<h2>Grammar lessons</h2>
<div class="row">
<div class="column">
<h3>
Uusi Kielemme
</h3>
<input type="text" id="uusiSearchTxtBox" onkeypress="redirectToUusi(event)" autofocus />
<script type="text/javascript">
function redirectToUusi(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://uusikielemme.fi/?s=" + document.getElementById('uusiSearchTxtBox').value;
}
}
</script>
</div>
<div class="column">
<h3>
RandomFinnishLesson
</h3>
<input type="text" id="rflSearchTxtBox" onkeypress="redirectToRFL(event)" autofocus />
<script type="text/javascript">
function redirectToRFL(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://randomfinnishlesson.blogspot.com/search?q=" + document.getElementById('rflSearchTxtBox').value;
}
}
</script>
</div>
</div>
<h2>Others</h2>
<div class="row">
<div class="column">
<h3>
Google Images
</h3>
<input type="text" id="googleSearchTxtBox" onkeypress="redirectToGoogle(event)" autofocus />
<script type="text/javascript">
function redirectToGoogle(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://www.google.fi/search?q=" + document.getElementById('googleSearchTxtBox').value + "&source=lnms&tbm=isch";
}
}
</script>
</div>
</div>
</div>
</body>
</html>