-
Notifications
You must be signed in to change notification settings - Fork 2
/
en.html
61 lines (55 loc) · 2.95 KB
/
en.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="main.css">
<title>Armenian alphabet trainer</title>
<link rel="icon" type="image/png" href="favicon.png">
<meta name="description" content="Learn Armenian alphabet by frequency, Учить армянский алфавит по частотности">
<meta name="keywords" content="armenian, letters, alphabet, learn, test, frequency, trainer, армянский, алфавит, буквы, учить, тренер, частотность">
<meta property="og:url" content="https://chev.me/armenian/"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://chev.me/armenian/armenian.png"/>
<meta name="viewport" content="width=device-width, initial-scale=0.6">
<!-- Yandex.Metrika counter -->
<script type="text/javascript" > (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)}; m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)}) (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); ym(37286925, "init", { clickmap:true, trackLinks:true, accurateTrackBounce:true }); </script> <noscript><div><img src="https://mc.yandex.ru/watch/37286925" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</head>
<body>
<h1>Armenian Alphabet Trainer</h1>
<form>
<div class="group">
<label><input name="upper" data-type="case" oninput="update(true, event)" type="checkbox" checked>Upper</label>
<label><input name="lower" data-type="case" oninput="update(true, event)" type="checkbox" checked>Lower</label>
</div>
<div class="group">
<label><input oninput="updateAlphabet()" name=sort value=freq type=radio checked>By frequency</label>
<label><input oninput="updateAlphabet()" name=sort value=alpha type=radio>Alphabetically</label>
</div>
<div class="group">
<label><input oninput="update()" name=translit value=latin type=radio checked>Latin</label>
<label><input oninput="update()" name=translit value=cyrillic type=radio>Cyrillic</label>
</div>
<div id="none-btn" onclick="selectNone()">Select none</div>
<button type="button" onclick="runTest()" id="train-btn">Train!</button>
</form>
<div class="alphabet"></div>
<div class="test" onclick="skip()"></div>
<footer>
<div>
<a href="https://github.com/okalachev/armenian">Source code on GitHub</a>
</div>
<div>
<a href="ru">Русская версия</a>
</div>
<div>
Author: <a href="https://chev.me">Oleg Kalachev</a>
</div>
</footer>
<template id="i18n-train">Train!</template>
<template id="i18n-train-selected">Train selected!</template>
<template id="i18n-correct-answers">Correct answers:</template>
<template id="i18n-of">of</template>
<template id="i18n-choose">Choose correct transliteration:</template>
<script src="main.js"></script>
</body>
</html>