-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (42 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Фыризатор</title>
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="desc">
<h1>Фыризатор 2.0</h1>
Переводчик с русского на лисячий. Можно писать на русском слева и получать результат на лисячом справа или
наоборот -- писать на лисячем справа и получать перевод на русском слева. Фыр!
</div>
<div class="row">
<div class="col">
<div class="title">
Русский:
</div>
<div id="decoded" class="input" contenteditable="true">
</div>
</div>
<div class="col">
<div class="title">
Лисячий:
</div>
<div id="encoded" class="result" contenteditable="true"></div>
</div>
</div>
<div class="desc footer">
Сделано с любовью by <a href="https://vk.com/lisennk">@lisennk</a>. Исходный код <a href="https://github.com/Lisennk/fyr">на GitHub</a>.
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="assets/js/crypt.js"></script>
<script src="assets/js/ui.js"></script>
</body>
</html>