-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseslemle.html
64 lines (63 loc) · 2.35 KB
/
seslemle.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
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>Türkçe Hecele</title>
<script type="module" src="./hecele.js"></script>
<style>
textarea {
hyphens: manual;
-webkit-hyphens: manual;
-ms-hyphens: manual;
resize: both;
}
</style>
</head>
<body>
<div class="container border rounded mt-5 p-4">
<div class="row">
<div class="col-auto col-md-3">
<div class="form-check">
<input class="form-check-input" type="radio" id="hrd" name="tire" checked>
<label class="form-check-label" for="hrd">Açık tire</label>
</div>
</div>
<div class="col-auto col-md-3">
<div class="form-check">
<input class="form-check-input" type="radio" id="shy" name="tire">
<label class="form-check-label" for="shy">Gizli tire</label>
</div>
</div>
<div class="col-auto col-md-3">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="k13">
<label class="form-check-label" for="k13">13. kural</label>
</div>
</div>
</div>
<div class="row mt-3 mb-2">
<div class="col">
<textarea class="form-control" id="metin" placeholder="sözcük veya kısa metin girip Hecele’ye tıklayın"></textarea>
</div>
</div>
<div class="row">
<div class="col-auto col-md-2 align-self-center">
<button type="button" class="btn btn-primary" id="hecele">Hecele</button>
</div>
<div class="col-auto col-md-2 align-self-center">
<button type="button" class="btn btn-outline-secondary btn-sm" id="gerial">Geri al</button>
</div>
<div class="col-auto col-md-2 align-self-center">
<button type="button" class="btn btn-outline-secondary btn-sm" id="clr">Sıfırla</button>
</div>
<div class="col-auto">
<a class="btn btn-link btn-sm" href="https://github.com/alperali/hecele">Proje sayfasına dön</a>
</div>
</div>
</div>
<!-- script src="./js/bootstrap.min.js"></script -->
<script type="module" src="./seslemle.js"></script>
</body>
</html>