mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 14:00:31 +02:00
21 lines
674 B
HTML
21 lines
674 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>IP Lookup</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<h1>IP Lookup</h1>
|
|
<div class="cards shadow">
|
|
<input type="text" id="ipInput" placeholder="Enter IP address">
|
|
<button id="lookupElem">Lookup</button>
|
|
<div class="your" data-tooltip="Only provides IPv4.">Your IP: <span id="your-ip">69.420.69.69</span></div>
|
|
</div>
|
|
<div id="output"></div>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|