https://hello.com.nese.42web.io/

Submitted URL:
http://hello.com.nese.42web.io/Redirected
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 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 lang="en"><head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Analytics</title>
  <style>
    body { font-family: Arial, sans-serif; }
    h1 { text-align: center; }
    .container { width: 80%; margin: auto; }
    table { width: 100%; border-collapse: collapse; margin-top: 20px; }
    table, th, td { border: 1px solid #ccc; }
    th, td { padding: 10px; text-align: left; }
    th { background-color: #f4f4f4; }
  </style>
</head>
<body>
  <h1>Analytics</h1>
  <div class="container">
    <h2>Total Count: 0</h2>

    <h2>Operating System Statistics</h2>
    <table>
      <thead>
        <tr>
          <th>Operating System</th>
          <th>Count</th>
          <th>Percentage</th>
        </tr>
      </thead>
      <tbody>
        
      </tbody>
    </table>

    <h2>Time Frame Data</h2>
    <table>
      <thead>
        <tr>
          <th>Time Frame</th>
          <th>Count</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Last 30 Days</td>
          <td>0</td>
        </tr>
        <tr>
          <td>Last Week</td>
          <td>0</td>
        </tr>
        <tr>
          <td>Last Day</td>
          <td>0</td>
        </tr>
        <tr>
          <td>Last Hour</td>
          <td>0</td>
        </tr>
      </tbody>
    </table>
  </div>


</body></html>