-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Adresse IP</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='/src/css/main.css'>
<script src='/src/js/main.js'></script>
</head>
<body>
<div class="nav">
<a href="/index.html"><img class="logo" src="/src/img/logo.webp"></a>
</div>
<div class="container">
<p>This is a pre-release version of the website, with some features coming soon!</p>
</div>
<div class="container">
<h1>Your IP adress</h1>
<p>IPv4: <span id="ipv4">Loading...</span></p>
<p>IPv6: <span id="ipv6">Loading...</span></p>
<p><span id="erreur"></span></p>
</div>
<footer>
<p>Made with ❤️ by <a class="hyper_link" href="https://hermito.fr" target="_blank">Hermito</a>.</p>
</footer>
</body>
</html>