http://jcozby.preparadonn.credit/seven.html

Submitted URL:
http://jcozby.preparadonn.credit/seven.html
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 2 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

NameType
onbeforetogglestring
onscrollendstring

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
http://jcozby.preparadonn.credit/seven.html
Text
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>404</title>
    <style>
        * {
            -webkit-box-sizing: border-box;
            box-sizing: border-box
        }

        body {
            font-family: sans-serif;
            padding: 0;
            margin: 0
        }

        #notfound {
            position: relative;
            height: 100vh
        }

        #notfound .notfound {
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%)
        }

        .notfound {
            max-width: 767px;
            width: 100%;
            line-height: 1.4;
            padding: 0 15px
        }

        .notfound .notfound-404 {
            position: relative;
            height: 150px;
            line-height: 150px;
            margin-bottom: 25px
        }

        .notfound .notfound-404 h1 {
            font-size: 186px;
            font-weight: 900;
            margin: 0;
            text-transform: uppercase;
        }

        .notfound h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 0
        }

        .notfound p {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 0;
            text-transform: uppercase
        }
        
    </style>
</head>

<body>
    <div id="notfound">
        <div class="notfound">
            <div class="notfound-404">
                <h1>404</h1>
            </div>
            <h2>Oops! This Page Could Not Be Found</h2>
            <p>Sorry but the page you are looking for does not exist, have been removed. name changed or is temporarily unavailable</p>
        </div>
    </div>


</body></html>