-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Translate Telephone</title>
<link href="https://fonts.googleapis.com/css?family=Niramit:400" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div class="content">
<h2>Translate Telephone</h2>
<h3>Code by Nik B, idea by Nik L.</h3>
<form id="form" action="/translate">
Input text:<br>
<input id="text" name="text" required>
<br>
Number of translations:<br>
<input id="num" type="number" name="num" value="10" min="1" max="15" required>
<br><br>
<label class="container">Translate to English?
<input id="translate" type="checkbox" name="translate">
<span class="checkmark"></span>
</label>
<input id="submit" class="button" type="submit" value="yes go">
</form>
</div>
<script src="index.js"></script>
</body>
</html>