summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorJibin Thomas <jibin.thomas2706@gmail.com>2018-10-14 14:57:17 +0530
committerYuval Adam <_@yuv.al>2018-10-14 11:27:17 +0200
commit38192d7d93254893ef0e7ec3107c022da8be499f (patch)
tree4401e42fe295cd48f69063dd83875684d68d2ca1 /index.html
parentd0c28b4b61696f954e8d3372feafda7868e80be9 (diff)
Refactor and modernize code base (#5)
Fixes #3 - * Updated all the dependencies to latest version * Config files updated * Moved the files to src directory * Updated README file * Configured package.json and README.md for production build * Added gh-pages package * Added production details in README.md * Removed unnecessary script tag from index.html * Change the fonts to ubuntu
Diffstat (limited to 'index.html')
-rw-r--r--index.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/index.html b/index.html
deleted file mode 100644
index 1744d3b..0000000
--- a/index.html
+++ /dev/null
@@ -1,36 +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="http://cidr.xyz">
- <script>
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-
- ga('create', 'UA-71263113-1', 'auto');
- ga('send', 'pageview');
- </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>
- Created by <a href="https://y3xz.com">Yuval Adam</a>. Source available on <a href="https://github.com/yuvadm/cidr.xyz">Github</a>.
- </footer>
- <script type="text/javascript" src="bundle.js" charset="utf-8"></script>
- </body>
-</html>