https://enq.bz/

Submitted URL:
https://enq.bz/
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

<html><head><style>    .container {         height: 100%;        position: relative;        border: 3px transparent green;     }    .vertical-center {        margin: 0;        position: absolute;        top: 50%;        left: 50%;        -ms-transform: translateY(-50%);        transform: translate(-50%, -50%);    }</style>    <meta charset="utf-8"></head><body>    <div class="container">        <div class="vertical-center">            <h1>お探しのページが見つかりません。</h1>        </div>    </div></body></html>