http://cheesepizza.is-great.net/?i=1

Submitted URL:
http://cheesepizza.is-great.net/
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
onbeforetoggleobject
onscrollendobject

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://errors.infinityfree.net/errors/404/
Text
Failed to load resource: the server responded with a status of 404 ()

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">
    <title>Project Eden</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #000;
            color: white;
            text-align: center;
            margin: 0;
            padding: 0;
        }
        h1 {
            color: #ff3333;
            margin-bottom: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .top-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .box {
            border: 2px solid #ff3333;
            padding: 20px;
            width: 49%; /* Ensure both boxes are equal width */
            box-sizing: border-box;
        }
        .box p {
            color: white;
        }
        .video-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        .video-box {
            flex: 1 1 calc(33.333% - 20px); /* Adjust box size dynamically */
            max-width: calc(33.333% - 20px); /* Ensure boxes don’t get too large */
            border: 2px solid #ff3333;
            padding: 10px;
            box-sizing: border-box;
        }
        .video-box video {
            width: 100%;
            height: auto;
            object-fit: cover; /* Ensures the video fills the box proportionally */
        }
        .contact {
            border: 2px solid #ff3333;
            padding: 20px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .video-box {
                flex: 1 1 calc(50% - 20px); /* Adjust to two columns on smaller screens */
                max-width: calc(50% - 20px);
            }
            .top-container {
                flex-direction: column;
            }
            .box {
                width: 100%;
                margin-bottom: 20px;
            }
        }
        @media (max-width: 480px) {
            .video-box {
                flex: 1 1 100%; /* Stack videos vertically on small screens */
                max-width: 100%;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Project Eden</h1>

        <!-- Top section with Text box and Video -->
        <div class="top-container">
            <!-- Text box -->
            <div class="box">
                <p>We have everything, contact info at bottom of site.
                    Teens, Pre-teens, all ages from 1-17, multiple categories, rape, w/parents, w/animals.
                    Contact information last updated 27/09/2024</p>
    </div>

            <!-- Top Video with External Source -->
            <div class="box">
                <video width="720" height="405" controls="">
                    <source src="https://media-upload.net/uploads/BgijXczSMmV4.mp4">
                    <p>Your browser does not support the video tag.</p>
                </video>
            </div>
        </div>

        <!-- Local Video Boxes -->
        <div class="video-container">
            <div class="video-box">
                <video controls="">
                    <source src="tst1.mp4" type="video/mp4">
                    <p>Your browser does not support the video tag.</p>
                </video>
            </div>
            <div class="video-box">
                <video controls="">
                    <source src="tst2.mp4" type="video/mp4">
                    <p>Your browser does not support the video tag.</p>
                </video>
            </div>
            <div class="video-box">
                <video controls="">
                    <source src="tst3.mp4" type="video/mp4">
                    <p>Your browser does not support the video tag.</p>
                </video>
            </div>
            <div class="video-box">
                <video controls="">
                    <source src="tst4.mp4" type="video/mp4">
                    <p>Your browser does not support the video tag.</p>
                </video>
            </div>
            <div class="video-box">
                <video controls="">
                    <source src="tst5.mp4" type="video/mp4">
                    <p>Your browser does not support the video tag.</p>
                </video>
            </div>
            <div class="video-box">
                <video controls="">
                    <source src="tst6.mp4" type="video/mp4">
                    <p>Your browser does not support the video tag.</p>
                </video>
            </div>
        </div>

        <!-- Contact Information -->
        <div class="contact">
            <p>Contact Us:</p>
            <p>Email: <a href="mailto:[email protected]" style="color: #ff3333;">[email protected]</a></p>
            <p>Telegram: xpertlol (official reseller)</p>
            <p>Session: 059944892827744f01a01f1e403271f83d6b0f62e816b5b584638b519bdb580d2e</p>
            <p>Signal: ASK ON SESSION</p>
        </div>
    </div>

</body></html>