https://links.healthy-americans.com/a/1653/click/1440

Submitted URL:
https://links.healthy-americans.com/a/1653/click/1440
Report Finished:

The outgoing links identified from the page

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

<html><head></head><body><div class="not-found-wrapper">
    <h1>Oops! sorry, we can't find this page.</h1>
    <h2>Looks like page doesn't exist anymore</h2>
    <img src="/assets/page_dont_exist.png">
</div>
<style>
    @font-face {
        font-family: 'Montserrat';
        src: URL('/assets/Montserrat-SemiBold.ttf') format('truetype');
    }

    .not-found-wrapper {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: #fafafa;
        height: calc(100vh - 100px);
    }

    .not-found-wrapper h1 {
        font-size: 45px;
        margin: 100px auto 12px auto;
        letter-spacing: 1.2;
        font-family: Montserrat, sans-serif;
    }

    .not-found-wrapper h2 {
        margin-bottom: 50px;
        color: grey;
        font-size: 26px;
        letter-spacing: 1.1;
        font-family: Montserrat, sans-serif;
    }
</style>
<script>
    message = {
      type: '404'
    }
    window.parent.postMessage(message,'*');
</script>
</body></html>