-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cevir</title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,700" rel="stylesheet">
<!-- Basic CSS file -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<small>
Aradiginiz metin once Google ile Ingilizce'ye cevrilecek. Metin dili otomatik olarak belirleniyor,
Turkce de olabilir Hollandaca da... Ingilizce sonuc ise Tureng'de tekrar Turkce'ye cevrilecek.
</small>
</div>
</div>
<div class="row">
<div class="col-9">
<input type="text" id="sourceText" name="sourceText" placeholder="Sozcuk"
onkeyup="translate({sourceText: document.querySelector('#sourceText').value})">
</div>
<div class="col-3">
<input type="submit" value="Ara" onclick="translate({sourceText: document.querySelector('#sourceText').value})">
</div>
</div>
<div class="row">
<div class="col-12">
<b>Google Ceviri: </b>
<span id="translatedText"></span>
</div>
</div>
<div class="row">
<div class="col-12">
<b>Tureng:</b>
</div>
</div>
<div class="row">
<div class="col-12" id="results">
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>