-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFinnish_Lookup.html
More file actions
135 lines (135 loc) · 4.73 KB
/
Finnish_Lookup.html
File metadata and controls
135 lines (135 loc) · 4.73 KB
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
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Finnish Lookup Resources</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<div class="header-container">
<h1>Finnish Resources</h1>
</div>
<a class="word-of-the-day" href="https://www.101languages.net/finnish/finnish-wotd/">
<img src="./images/flag-small.svg" alt="Finnish Flag">
</a>
</header>
<div class="content">
<h2>Sanakirjat</h2>
<div class="category">
<div class="search">
<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="search">
<h3>Kielitoimiston SK</h3>
<input type="text" id="ksanakirjaTxtBox" onkeypress="redirectToKS(event)">
<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="search">
<h3>Glosbe</h3>
<input type="text" id="glosbeTxtBox" onkeypress="redirectToGlosbe(event)">
<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>
<h2>Pronunciation</h2>
<div class="category">
<div class="search">
<h3>Forvo</h3>
<input type="text" id="forvoSearchTxtBox" onkeypress="redirectToForvo(event)">
<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="category">
<div class="search">
<h3>Uusi Kielemme</h3>
<input type="text" id="uusiSearchTxtBox" onkeypress="redirectToUusi(event)">
<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="search">
<h3>Random Finnish</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>Other Resources</h2>
<div class="category">
<div class="search">
<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 class="search">
<h3>Papunet</h3>
<input type="text" id="papuSearchTxtBox" onkeypress="redirectToPapu(event)" autofocus />
<script type="text/javascript">
function redirectToPapu(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://kuvapankki.papunet.net/haku/" + document.getElementById('papuSearchTxtBox').value;
}
}
</script>
</div>
<div class="search">
<h3>/r/LearnFinnish</h3>
<input type="text" id="redditSearchTxtBox" onkeypress="redirectToReddit(event)" autofocus />
<script type="text/javascript">
function redirectToReddit(textevent){
if(textevent.keyCode === 13){
window.location.href = "https://www.reddit.com/r/LearnFinnish/search?q=" + document.getElementById('redditSearchTxtBox').value + "&restrict_sr=on&sort=relevance&t=all";
}
}
</script>
</div>
</div>
</div>
<footer>
<p>Join us on the Uusi kielemme <a href="https://discord.com/invite/dCPn36v">Discord</a>!</p>
</footer>
</body>
</html>