This repository has been archived by the owner on Oct 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (59 loc) · 2.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
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
<!DOCTYPE html>
<html>
<head>
<title>HexIP Converter</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="search" type="application/opensearchdescription+xml" title="KurzGedanke" href="/opensearch.xml" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="js/jquery-js.js"></script>
<script src="js/ipconverter.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="UTF-8">
<meta name="description" content="Converts a HexIP to a DecimalIP">
<meta name="keywords" content="ip, converter, free, HexIP, DecimalIP, decimal, hex, hexadecimal, online">
<meta name="author" content="KurzGedanke">
</head>
<body onload="getURLParam();">
<div class="container text-center">
<h1>Converts a HexIP to a DecimalIP</h1>
<hr id ="hrLine">
<div class="input">
<p> Please enter the IP in the following format: 7F000001 </p>
<div class="button">
<input id="id1" type="text" min="0" required>
<button onclick="getLineInput()">OK</button>
</div>
<p style="margin-top: 5%;">
Input: <span id="oc"></span>
</p>
<p>
Result: <b id="result"></b>
</p>
<p>
Maxmind: <b id="maxmind"></b>
</p>
<p>
domaintools: <b id="domaintools"></b>
</p>
<p>
</p>
</div>
<noscript>Please enable JavaScript!</noscript>
</p>
</div>
<footer class="footer">
<div class="container text-center">
<p>
<a href="https://github.com/KurzGedanke"> Created by KurzGedanke</a>
</p>
<p>You can use this tool on your own website: <a href="https://github.com/KurzGedanke/toDecimalIP">GitHub</a>
</p>
<p>
License: <a href="https://github.com/KurzGedanke/toDecimalIP/blob/master/LICENSE">GNU General Public License v3.0</a>
</p>
</div>
</footer>
</body>
</html>