summaryrefslogtreecommitdiff
path: root/src/index.html
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-09-21 13:15:44 +0200
committerYuval Adam <_@yuv.al>2024-09-21 15:13:25 +0200
commit65e7041a3c88a5b2d1ae76e7023807537775cb1b (patch)
treec21fe6cc3f137e2f0c13c0c184f9f59581a6639a /src/index.html
parent6ed566ac4f30e1aa8b7a817c22912c50ee136f86 (diff)
Initial NextJS project creation with basic structure
Diffstat (limited to 'src/index.html')
-rw-r--r--src/index.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/index.html b/src/index.html
deleted file mode 100644
index 5ddd550..0000000
--- a/src/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <meta charset="utf-8">
-
- <title>CIDR.xyz</title>
-
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="robots" content="all">
- <meta name="keywords" content="cidr, ip address, range, netmask, visualizer">
- <meta name="description" content="Interactive IP address and CIDR range visualizer">
- <meta name="author" content="Yuval Adam">
-
- <link rel="canonical" href="https://cidr.xyz">
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-31LHNP2G97"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'G-31LHNP2G97');
- </script>
- </head>
- <body>
- <header>
- <h1>CIDR.xyz<small>An interactive IP address and CIDR range visualizer</small></h1>
- <p><a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">CIDR</a> is a notation for describing blocks of IP addresses and is used heavily in various networking configurations. IP addresses contain 4 octets, each consisting of 8 bits giving values between 0 and 255. The decimal value that comes after the slash is the number of bits consisting of the routing prefix. This in turn can be translated into a netmask, and also designates how many available addresses are in the block.</p>
- </header>
- <section id="app"></section>
- <footer>
- <p>* For routing mask values &lt;= 30, first and last IPs are base and broadcast addresses and are unusable.</p>
- <p>Created by <a href="https://yuv.al">Yuval Adam</a>. Source available on <a href="https://github.com/yuvadm/cidr.xyz">Github</a>.</p>
- </footer>
- </body>
-</html>