-
Notifications
You must be signed in to change notification settings - Fork 3
/
ipa.html
61 lines (61 loc) · 1.88 KB
/
ipa.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
<html>
<head>
<style>
input{
width: 90%;
margin: 5%;
font-size: 24px;
outline: none;
}
button{
background-color: red;
color: white;
border: none;
font-size: 24px;
}
#spanish{
background-color: green; /* selected */
font-weight: 700;
}
#buttondiv{
width: 40%;
margin-left: 30%;
margin-right: 30%;
}
h1{
font-size: 48px;
font-family: "Verdana";
text-align: center;
}
@font-face {
font-family: "Noto Serif";
src: url(NotoSerif-Regular.ttf);
}
#rez{
font-family: "Noto Serif";
font-size: 24px;
text-align: center;
}
</style>
<!-- <script src="ipa.js"></script> -->
<script src="newipa.js"></script>
<title>IPA Project</title>
<meta charset="utf-8">
</head>
<body>
<h1>Select a Language:</h1>
<div id="buttondiv">
<button id="asturian" onclick="selectLang(this.id)">Asturian</button>
<button id="basque" onclick="selectLang(this.id)">Basque</button>
<!-- <button id="extramaduran" onclick="selectLang(this.id)">Extramaduran</button>
<button id="macedonian" onclick="selectLang(this.id)">Macedonian</button> -->
<button id="spanish" onclick="selectLang(this.id)">Spanish</button>
</div>
<br>
<br>
<input id="inp" placeholder="write text here..." onkeyup="traducir()" spellcheck="false" />
<br>
<br>
<p id="rez"></p>
</body>
</html>