Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - modpm.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Type: text/plain; charset=utf-8
Date: Tue, 06 May 2025 05:11:20 GMT
Location: https://modpm.com/
Server: Netlify
X-Nf-Request-Id: 01JTJ02WB6F95HA8119WHPPCAK
Content-Length: 33

HTTP Code 301 Moved Permanently

301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://modpm.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Accept-Ranges: bytes
Age: 0
Cache-Control: public,max-age=0,must-revalidate
Cache-Status: "Netlify Edge"; fwd=miss
Content-Length: 8562
Content-Type: text/html; charset=UTF-8
Date: Tue, 06 May 2025 05:11:20 GMT
Etag: "4d198de69ef51c6396ea0192a38877d2-ssl"
Server: Netlify
Strict-Transport-Security: max-age=31536000
X-Nf-Request-Id: 01JTJ02WQVG63FVAKY9WGKYCE5

HTTP Code 200 OK

200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: modpm.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ModPM - Home Page</title>
    
    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap" rel="stylesheet">
    
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/mousetrap/1.6.5/mousetrap.min.js"></script>
    <link rel="stylesheet" href="styles.css">
    
    <style>
        /* Full-screen video container */
        .video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            z-index: -2;
        }

        /* Video properties */
        .video-container video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: auto;
            height: 100%;
            min-width: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        /* Hide mobile video by default */
        .video-container .mobile-video {
            display: none;
        }

        /* Show vertical mobile video on smaller screens */
        @media (max-width: 768px) {
            .video-container .desktop-video {
                display: none;
            }
            .video-container .mobile-video {
                display: block;
            }
        }

        /* Blurred Overlay - Slightly Increased Blur */
        .blur-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            backdrop-filter: blur(15px);
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        /* Main Content Styling */
        body {
            font-family: 'Space Grotesk', sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
            color: white;
            position: relative;
            z-index: 1;
            padding: 20px; /* Prevents text from touching edges on mobile */
        }

        .hero {
            font-size: 32px; /* Increased hero font size */
        }

        /* MODPM Styling - Increased Size & Centering */
        .p1, .p2 {
            font-weight: 700;
            font-size: 54px; /* Larger for impact */
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            padding: 8px 12px;
            border-radius: 5px;
            margin: 5px;
        }

        .p1 {
            color: #ffffff;
            background: rgba(0, 0, 0, 0.6);
        }

        .p2 {
            color: #d32f2f;
            background: rgba(255, 255, 255, 0.8);
        }

        /* Hint & Reveal Email Styling */
        .hint {
            margin-top: 10px;
            font-size: 16px; /* Slightly bigger for readability */
            color: #ccc;
        }

        /* Email is Completely Hidden Before Reveal */
        #email {
            display: none; /* Fully hidden */
            visibility: hidden; /* Ensures no background is shown */
        }

        /* Email Styling - Only Applied After Reveal */
        .email-visible {
            display: block !important; /* Make sure it shows */
            visibility: visible !important; /* Ensure it's fully visible */
            margin-top: 15px;
            font-size: 18px;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: 1.5px;
            padding: 8px 12px;
            background: rgba(0, 0, 0, 0.6); /* Same as MOD background */
            color: #ffffff;
            border-radius: 5px;
            text-transform: uppercase;
            text-align: center;
            width: auto;
        }

        .email-visible a {
            text-decoration: none;
            color: #ffffff; /* White text */
            transition: color 0.3s ease-in-out;
            display: block; /* Ensures it takes full width and stays below MODPM */
        }

        .email-visible a:hover {
            color: #d32f2f; /* Matches PM color on hover */
        }

        /* Updated Reveal Button - Centered */
        .reveal-btn {
            display: none;
            margin-top: 15px;
            padding: 12px 20px;
            background: #d32f2f;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s ease-in-out;
            text-align: center;
        }

        .reveal-btn:hover {
            background: #b71c1c;
        }

        /* Ensure Reveal Button is Centered on Mobile */
        @media (max-width: 768px) {
            .reveal-btn {
                display: block;
                margin: 20px auto;
            }
        }
    </style>
</head>
<body>

    <!-- Video Background -->
    <div class="video-container">
        <video class="desktop-video" autoplay muted loop playsinline>
            <source id="desktop-video-source" src="" type="video/mp4">
            Your browser does not support the video tag.
        </video>
        <video class="mobile-video" autoplay muted loop playsinline>
            <source id="mobile-video-source" src="" type="video/mp4">
            Your browser does not support the video tag.
        </video>
    </div>

    <!-- Blurred Overlay -->
    <div class="blur-overlay"></div>

    <!-- Main Content -->
    <section class="hero">
        <p class="p1"></p>
        <p class="p2">PM</p>
        <p class="hint">Press <strong>E M</strong> (or tap on mobile) to reveal contact info.</p>
        <button class="reveal-btn">Tap to Reveal</button>
        <span id="email"></span>
    </section>

    <script>
        document.addEventListener("DOMContentLoaded", function() {
            // Array of possible videos
            const desktopVideos = [
                "desktop-video1.mp4",
                "desktop-video2.mp4",
                "desktop-video3.mp4",
                "desktop-video4.mp4"
            ];
            const mobileVideos = [
                "mobile-video1.mp4",
                "mobile-video2.mp4",
                "mobile-video3.mp4"
            ];

            // Select a random video
            const randomDesktopVideo = desktopVideos[Math.floor(Math.random() * desktopVideos.length)];
            const randomMobileVideo = mobileVideos[Math.floor(Math.random() * mobileVideos.length)];

            // Set video sources dynamically
            document.getElementById("desktop-video-source").src = randomDesktopVideo;
            document.getElementById("mobile-video-source").src = randomMobileVideo;

            // Reload video elements to apply new sources
            document.querySelector(".desktop-video").load();
            document.querySelector(".mobile-video").load();

            // Initialize typed.js for animated text effect
            new Typed(".p1", {
                strings: ["MOD", "MODULAR", "MOD", "MODERN", "MOD", "MODEL", "MOD", "MODE", "MOD", "MODEST", "MOD", "MODIFICATION", "MOD", "MODERATE", "MOD"],
                typeSpeed: 50,
                backSpeed: 10,
                backDelay: 2000,
                showCursor: false,
                loop: true
            });

            // Function to reveal email
            function revealEmail() {
                let email = document.getElementById("email");
                email.classList.add("email-visible");
                email.innerHTML = `<a href="mailto:[email protected]">[email protected]</a>`;
                document.querySelector(".hint").style.display = "none";
                document.querySelector(".reveal-btn").style.display = "none";
            }

            Mousetrap.bind('e m', revealEmail);
            document.querySelector(".reveal-btn").addEventListener("click", revealEmail);
        });
    </script>
</body>
</html>                               

Whois info of domain

Domain Name: MODPM.COM
Registry Domain ID: 2966345911_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-03-13T23:37:52Z
Creation Date: 2025-03-11T23:19:26Z
Registry Expiry Date: 2026-03-11T23:19:26Z
Registrar: NameCheap, Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: DNS1.P03.NSONE.NET
Name Server: DNS2.P03.NSONE.NET
Name Server: DNS3.P03.NSONE.NET
Name Server: DNS4.P03.NSONE.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-06T05:11:02Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass