https://kpqz.brdbuxte.com/

Submitted URL:
https://kpqz.brdbuxte.com/
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 · 2 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">
    <link rel="icon" type="image/x-icon" href="/error.ico">
    <title>Page not found</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        body{
            display: flex;
            width: 100vw;
            height: 100vh;
            align-items: center;
            justify-content: center;
            margin: 0;
            background: #131313;
            color: #fff;
            font-size: 64px;
            letter-spacing: -1px;
        }
        .wrapper{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            color: #fff;
        }
        .wrapper .title{
            font-size: 120px;
            font-weight: bold;
        }
        .wrapper p{
            font-size: 32px;
            padding:0 16px;
        }
        .title{
            animation: glitch 1s linear infinite;
        }

      
    </style>
</head>
<body>
    <div class="wrapper">
      <div class="title" title="404">404</div>
      <p>Oops! Page not found.</p>
      <p>此页面不存在</p>
    </div>


</body></html>