-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (60 loc) · 2.04 KB
/
index.html
File metadata and controls
65 lines (60 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<script src="showData.js"></script>
<style>
body {width:50%; margin:0 auto;}
</style>
<style>
.textboxclass {
height: 35px;
width: 600px;
border:1px;
solid #000000;
}
.tdcolor1 {
border: 0px solid #41FF00;
}
.tdcolor {
border: 0px solid #41FF00;
}
.textcolor{
solid #41FF00;
}
.ascii-art {
font-family: monospace;
white-space: pre;
font-size: 20px;
}
</style>
</head>
<title>Search for IPv4 or IPv6 or domain name</title>
<body bgcolor="#000000">
<center><div class="ascii-art" STYLE="color: #41FF00;">
_______. _______ ___ .______ ______ __ __ __ .______
/ || ____| / \ | _ \ / || | | | | | | _ \
| (----`| |__ / ^ \ | |_) | | ,----'| |__| | | | | |_) |
\ \ | __| / /_\ \ | / | | | __ | | | | ___/
.----) | | |____ / _____ \ | |\ \----.| `----.| | | | | | | |
|_______/ |_______/__/ \__\ | _| `._____| \______||__| |__| |__| | _|
<h6 align=right>powered by ip2location databases</h6>
</div></center>
<table align="left">
<tr></tr>
<td class="tdcolor1"><label STYLE="color: #41FF00;">searchip@localhost:~$</label></td><td><input id="searchTxt" name="searchTxt" class="textboxclass" STYLE="color: #41FF00; font-family: system-ui; font-size: 16px; background-color: #000000;" size="30" maxlength="30" autofocus />
<button id="myBtn" style="display: none;" onclick="showData(searchTxt.value)">Button</button>
</td>
<script>
var input = document.getElementById("searchTxt");
input.addEventListener("keyup", function(event) {
if (event.keyCode === 13) {
event.preventDefault();
document.getElementById("myBtn").click();
}
});
</script>
<tr></tr>
<td></td><td class="tdcolor" STYLE="color: #41FF00;">
<div id="txtHint"></div></td>
</table>
</body>
</html>