https://doihaveinternet.com/

Submitted URL:
https://doihaveinternet.com/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 12 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 1 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head>
    <meta charset="utf-8">
    <title>Do I Have Internet</title>
    <style>
      body{
        font-family: sans-serif;
        background-color: #000;
        color:white;
        display:flex;
        align-items: center;
        justify-content: center;
        height:100vh;
        padding:0;
      }

      #statusBox{
        flex: auto;
        width:75%;
        text-align: center;
        font-size: 5rem;
      }

      h2{
        font-size:2rem;
        font-weight:100;
      }

      a{
        color:white;
        background-color: black;
        text-decoration: none;
      }

      a:hover{
        color:black;
        background-color: white;
      }
    </style>
  </head>
  <body>
    <div id="statusBox">
      <h1 id="status">Yes.</h1><h2>This incredibly useful service brought to you by <a href="http://shaungreiner.com">Shaun&nbsp;Greiner</a>.</h2>
    </div>
      <script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-S9TSTWHYYX&amp;cx=c&amp;_slc=1"></script><script async="" src="//www.google-analytics.com/analytics.js"></script><script type="text/javascript">
      function updateStatus(){
        var status;
        status = navigator.onLine ? "Yes." : "No. :(";
        document.getElementById("status").innerHTML=status;
      }
      updateStatus();
      setInterval(updateStatus,1000);
      </script>
      <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-12905503-1', 'auto');
        ga('send', 'pageview');
    </script>
  

</body></html>