-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en" manifest="cache.manifest">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>BinHex.net</title>
<link rel="stylesheet" href="binhex.css">
<link rel="icon" href="icon.png">
</head>
<body>
<div id="title">bin/hex/dec/octal converter</div>
<table id="conversion_table">
<tr>
<td>bin:</td>
<td>
<textarea id="bin" spellcheck="false"></textarea>
</td>
</tr>
<tr>
<td>hex:</td>
<td>
<textarea id="hex" spellcheck="false"></textarea>
</td>
</tr>
<tr>
<td>dec:</td>
<td>
<textarea id="dec" spellcheck="false"></textarea>
</td>
</tr>
<tr>
<td>octal:</td>
<td>
<textarea id="octal" spellcheck="false"></textarea>
</td>
</tr>
</table>
<a id="github_link" href="https://github.com/bensjoberg/BinHex">
View or fork on GitHub :)
</a>
<script src="bundle.js"></script>
</body>
</html>