-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.23 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 1.23 KB
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
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#encodedDiv {
width: 100%;
padding: 50px 0;
text-align: center;
background-color: #DCDCDC;
margin-top: 20px;
}
input[type=text] {
width: 100%;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
input[type=button], input[type=submit], input[type=reset] {
background-color: #DCDCDC;
border: none;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
font: normal 20px Verdana, Arial, sans-serif;
width: 100%;
}
body, input {
font: normal 20px Verdana, Arial, sans-serif;
}
</style>
<head>
<title>Encoder AIS</title>
</head>
<body>
<script src="encoder.js">
</script>
Input: <input type="text" id="mytext">
<input type="button" value="Encode" onclick="encodeText()">
<div id="encodedDiv" style="display:none">
</div>
</body>
</html>