77 lines
2.8 KiB
HTML
77 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="Ny4 IP Checker" />
|
|
<title>What is my IP?</title>
|
|
<link href="generated.css" rel="stylesheet" />
|
|
<script src="script.js" defer></script>
|
|
|
|
<link rel="dns-prefetch" href="https://fonts.googleapis.com/" />
|
|
<link rel="dns-prefetch" href="https://fonts.gstatic.com/" />
|
|
<link rel="dns-prefetch" href="https://api.ip.sb/" />
|
|
<link rel="dns-prefetch" href="https://api-v3.speedtest.cn/" />
|
|
<link rel="dns-prefetch" href="https://api.ipapi.is/" />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com/" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com/" />
|
|
<link rel="preconnect" href="https://api.ip.sb/" />
|
|
<link rel="preconnect" href="https://api-v3.speedtest.cn/" />
|
|
<link rel="preconnect" href="https://api.ipapi.is/" />
|
|
</head>
|
|
<body
|
|
class="text-violet-950 bg-violet-100 dark:text-slate-100 dark:bg-slate-900 font-mono font-medium text-sm md:text-base"
|
|
>
|
|
<div
|
|
class="flex flex-col min-h-screen justify-center items-center overflow-x-auto"
|
|
>
|
|
<p class="py-2">Ny4 IP checker!</p>
|
|
<table class="table-auto border-collapse">
|
|
<thead>
|
|
<tr>
|
|
<th class="table-cell">source</th>
|
|
<th class="table-cell">ip</th>
|
|
<th class="table-cell">location</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="table-cell">ip.ny4.dev</td>
|
|
<td class="table-cell" id="check-ny4-ip">Loading...</td>
|
|
<td class="table-cell" id="check-ny4-location">Loading...</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table-cell">ip.sb</td>
|
|
<td class="table-cell" id="check-ipsb-ip">Loading...</td>
|
|
<td class="table-cell" id="check-ipsb-location">Loading...</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table-cell">ipapi.is</td>
|
|
<td class="table-cell" id="check-ipapiis-ip">Loading...</td>
|
|
<td class="table-cell" id="check-ipapiis-location">Loading...</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table-cell">ip-api.com</td>
|
|
<td class="table-cell" id="check-speedtestcn-ip">Loading...</td>
|
|
<td class="table-cell" id="check-speedtestcn-location">
|
|
Loading...
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<footer
|
|
class="absolute inset-x-0 bottom-0 py-2 text-center text-slate-600 dark:text-slate-400 text-xs md:text-sm"
|
|
>
|
|
(c) 2024 Guanran Wang, source code licenced under MIT.
|
|
|
|
<a
|
|
class="text-blue-400 hover:text-blue-600 visited:text-violet-500"
|
|
href="https://git.ny4.dev/nyancat/ip-checker"
|
|
>Git Repo</a
|
|
>
|
|
</footer>
|
|
</body>
|
|
</html>
|