Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - n0f.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
date: Tue, 29 Apr 2025 21:34:02 GMT
server: Apache
last-modified: Thu, 05 Oct 2023 15:49:05 GMT
accept-ranges: bytes
content-length: 5273
vary: Accept-Encoding
content-type: text/html

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: n0f.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">
    <meta name="description" content="A brief description of your page">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">

    <title>Full Screen Webpage</title>
    <style>
body.reader-view {
    font-family: 'Georgia', serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

body.reader-view * {
    max-width: 100%;
    overflow: hidden;
}

body.reader-view img, 
body.reader-view video,
body.reader-view iframe {
    display: none;  /* Hide media elements in reader view */
}

body.reader-view h1, 
body.reader-view h2,
body.reader-view h3 {
    color: #444;
}

body.reader-view a {
    color: #0077cc;
    text-decoration: underline;
}
    </style>
</head>
<body>

<article>
    <header>
        <h1>Welcome to My Full Screen Webpage</h1>
    </header>
    
    <section>
        <p>This is a sample webpage to attempt to hide the URL bar on iOS Safari.</p>
        <p>To force<br> line breaks<br> in a text,<br> use the br<br> element.</p>
    </section>

    <section>
        <h2>A Poem</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>

    <section>
        <h2>A Cow</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>


    <section>
        <h2>A Sing</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>


    <section>
        <h2>A Bank</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>    <section>
        <h2>A Poem</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>

    <section>
        <h2>A Cow</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>


    <section>
        <h2 id="searching-tips">A Sing</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>


    <section>
        <h2>A Bank</h2>
        <blockquote>
            <p>Be not afraid of greatness.<br>
            Some are born great,<br>
            some achieve greatness,<br>
            and others have greatness thrust upon them.</p>
            <footer><em>-William Shakespeare</em></footer>
        </blockquote>
    </section>

    <section>
        <h2>Searching Tips</h2>
        <p>I retrieved too few citations...</p>
        <p>Find a specific citation...</p>
        <p>Searching by author...</p>
    </section>
</article>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js">
</script>
<script>
function getGeneratedPageURL(options) {
    function getBlobURL(code, type) {
        var blob = new Blob([code], { type: type });
        return URL.createObjectURL(blob);
    }

    var cssURL = getBlobURL(options.css, 'text/css');
    var jsURL = getBlobURL(options.js, 'text/javascript');

    var cssLink = options.css ? '<link rel="stylesheet" type="text/css" href="' + cssURL + '" />' : '';
    var jsLink = options.js ? '<script src="' + jsURL + '"></script>' : '';
    
    var source = [
        '<html>',
        '<head>',
        cssLink,
        jsLink,
        '</head>',
        '<body>',
        options.html || '',
        '</body>',
        '</html>'
    ].join('');

    return getBlobURL(source, 'text/html');
}

var url = getGeneratedPageURL({
    html: '<p>Hello, world!</p>',
    css: 'p { color: blue; }',
    js: 'console.log("hi")'
});

var iframe = document.querySelector('#iframe');
iframe.src = url;

</script>
</body>
</html>
                               

Whois info of domain

Domain Name: N0F.COM
Registry Domain ID: 149501828_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-03-07T08:28:43Z
Creation Date: 2005-04-06T01:24:22Z
Registry Expiry Date: 2026-04-06T01:24:22Z
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: RS71A.REGISTRAR-SERVERS.COM
Name Server: RS71B.REGISTRAR-SERVERS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-04-29T21:33:47Z <<<
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