https://raspcs.pl/

Submitted URL:
https://raspcs.pl
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, minimum-scale=1.0, maximum-scale=5.0, user-scalable=yes">
        <title>Ring Accelerator</title>
        <link rel="shortcut icon" href="https://brand.ringpublishing.com/assets/v1/favicons/favicon.ico" type="image/x-icon">
        <style>
            * {
                box-sizing: border-box;
            }

            html, body {
                height: 100%;
                margin: 0;
            }

            body {
                background-color: #fff;
                color: #000;
                display: flex;
                flex-direction: column;
                font-family: Arial, Helvetica, sans-serif;
                justify-content: center;
                line-height: 1.5;
                min-width: 320px;
                padding: 20px;
                text-align: center;
            }

            h1 {
                font-size: 28px;
                margin: 30px 0 0;
            }

            p {
                margin: 0;
            }

            footer {
                font-size: 12px;
            }

            footer a {
                color: #000;
                font-weight: bold;
                text-decoration: underline;
            }

            a.button {
                background-color: #000;
                border-radius: 2px;
                border: 1px solid #000;
                color: #fff;
                cursor: pointer;
                display: inline-flex;
                font-size: 12px;
                font-weight: 700;
                line-height: normal;
                margin: 30px 0;
                padding: 8px 15px;
                text-decoration: none;
                text-transform: uppercase;
                transition: all 0.2s linear;
            }

            a.button:hover {
                background-color: #0086cc;
                border: 1px solid #0086cc;
                box-shadow: none;
                color: #fff;
            }

            .wrapper {
                margin: 0 auto;
                width: 100%;
            }

            .logo {
                background-image: url('https://brand.ringpublishing.com/assets/v1/logotypes/medium/ringpublishing_logo_color_black_transparent_800.png');
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
                display: inline-flex;
                height: 101px;
                width: 280px;
            }

            @media (prefers-color-scheme: dark) {
                body {
                    background-color: #000;
                    color: #fff;
                }

                footer a {
                    color: #fff;
                }

                .logo {
                    background-image: url('https://brand.ringpublishing.com/assets/v1/logotypes/medium/ringpublishing_logo_color_white_transparent_800.png');
                }

                a.button {
                    background-color: #fff;
                    border: 1px solid #fff;
                    color: #000;
                }
            }
        </style>
    </head>
    <body>
        <div class="wrapper">
            <div class="logo"></div>
            <h1>Welcome to Accelerator</h1>
            <p>The domain has been configured properly to work with Accelerator.</p>
            <p>Before any modifications please check the documentation first.</p>
            <a class="button" href="https://developer.ringpublishing.com/Brand/docs/Accelerator/getting-started/index.html" target="_blank">
                Check documentation
            </a>
            <footer>
                Do you have any questions?
                Check <a href="https://ringpublishing.com">ringpublishing.com</a>
                or <a href="mailto:[email protected]">write to us</a>.
            </footer>
        </div>
    

</body></html>