Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - gr8ux.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Connection: keep-alive
Content-Length: 162
Server: GitHub.com
Content-Type: text/html
Location: https://www.gr8ux.com/
X-GitHub-Request-Id: C8AE:C165F:3677EEC:36F1409:68146EE5
Accept-Ranges: bytes
Age: 0
Date: Fri, 02 May 2025 07:06:14 GMT
Via: 1.1 varnish
X-Served-By: cache-hel1410026-HEL
X-Cache: MISS
X-Cache-Hits: 0
X-Timer: S1746169574.212964,VS0,VE134
Vary: Accept-Encoding
X-Fastly-Request-ID: 8934c16bc0ebe0feab1194ea92727099f6b9fa9b

HTTP Code 301 Moved Permanently

301 Moved Permanently 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://www.gr8ux.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Connection: keep-alive
Content-Length: 4419
Server: GitHub.com
Content-Type: text/html; charset=utf-8
Last-Modified: Sat, 19 Apr 2025 22:23:23 GMT
Access-Control-Allow-Origin: *
ETag: "6804225b-1143"
expires: Fri, 02 May 2025 07:16:14 GMT
Cache-Control: max-age=600
x-proxy-cache: MISS
X-GitHub-Request-Id: 1DFF:1C4A4E:36B7518:3730B3B:68146EE5
Accept-Ranges: bytes
Age: 0
Date: Fri, 02 May 2025 07:06:14 GMT
Via: 1.1 varnish
X-Served-By: cache-hel1410030-HEL
X-Cache: MISS
X-Cache-Hits: 0
X-Timer: S1746169574.403129,VS0,VE143
Vary: Accept-Encoding
X-Fastly-Request-ID: 0950d922286b392dc5fd6596fd473492681ba1eb

HTTP Code 200 OK

200 OK 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: gr8ux.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>My Portfolio</title>
  <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
  <link href="css/style.css" rel="stylesheet">
</head>
<body>
  <nav class="navbar navbar-expand-lg navbar-light bg-light">
    <div class="container-fluid">
      <a class="navbar-brand" href="index.html">My Portfolio</a>
      <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
        <span class="navbar-toggler-icon"></span>
      </button>
      <div class="collapse navbar-collapse" id="navbarNav">
        <ul class="navbar-nav ms-auto">
          <li class="nav-item"><a class="nav-link" href="projects.html">Projects</a></li>
          <li class="nav-item"><a class="nav-link" href="writing.html">Writing</a></li>
          <li class="nav-item"><a class="nav-link" href="ux.html">UX Work</a></li>
		  <li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
          <li class="nav-item"><a class="nav-link" href="resume.html">Resume</a></li>
          <li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
        </ul>
      </div>
    </div>
  </nav>

  <header class="container py-5">
    <h1 class="display-4 text-center">Welcome to My Portfolio</h1>
    <p class="lead text-center">Showcasing my work in web development, writing, and UX design.</p>
	<p class="text-center small-caps">This site was (mostly) AI generated.</p>
  </header>

  <footer class="text-center py-4 bg-light">
    <p>&copy; 2025 Theresa A. Clark. All rights reserved.</p>
  </footer>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

<!-- projects.html -->
<!-- Same header/nav/footer as above -->
<section class="container py-5">
  <h2 class="mb-4">Projects</h2>
  <div class="row">
    <div class="col-md-4 mb-4">
      <div class="card">
        <div class="card-body">
          <h5 class="card-title">Project One</h5>
          <p class="card-text">Brief description of what this project does and why it matters.</p>
          <a href="#" class="btn btn-primary">View More</a>
        </div>
      </div>
    </div>
    <!-- Repeat for more projects -->
  </div>
</section>

<!-- writing.html -->
<section class="container py-5">
  <h2 class="mb-4">Writing Samples</h2>
  <ul class="list-group">
    <li class="list-group-item">
      <a href="#">Technical Manual: High-Power Amplifier Calibration</a>
    </li>
    <li class="list-group-item">
      <a href="#">Blog Post: Designing for Accessibility</a>
    </li>
    <!-- Add more as needed -->
  </ul>
</section>

<!-- ux.html -->
<section class="container py-5">
  <h2 class="mb-4">UX Work</h2>
  <div class="row">
    <div class="col-md-6 mb-4">
      <img src="images/sample-ux1.png" class="img-fluid" alt="UX Sample 1">
    </div>
    <div class="col-md-6 mb-4">
      <img src="images/sample-ux2.png" class="img-fluid" alt="UX Sample 2">
    </div>
    <!-- More UX images as needed -->
  </div>
</section>

<!-- about.html -->
<section class="container py-5">
  <h2 class="mb-4">About Me</h2>
  <p>This is where you'll write a short bio about your experience, values, and interests.</p>
</section>

<!-- resume.html -->
<section class="container py-5">
  <h2 class="mb-4">Resume</h2>
  <p>You can link to a downloadable resume or embed it using an iframe or Google Docs viewer.</p>
  <a href="docs/my_resume.pdf" class="btn btn-primary" download>Download Resume</a>
</section>

<!-- contact.html -->
<section class="container py-5">
  <h2 class="mb-4">Contact Me</h2>
  <p>If you'd like to get in touch, please fill out the form below.</p>
  <div class="ratio ratio-4x3">
    <!-- Replace with your real form embed code -->
    <iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdFsePp9YHGE90xrlKJuUxPwnhS9gqhz9muXaX50HsXHi2VsQ/viewform?embedded=true" width="100%" height="600" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>

  </div>
</section>

<!-- css/style.css -->
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

footer {
  background-color: #eee;
}

<!-- js/script.js -->
// You can add smooth scrolling or interactive behaviors here.                               

Whois info of domain

Domain Name: GR8UX.COM
Registry Domain ID: 2975869046_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.ionos.com
Registrar URL: http://www.ionos.com
Updated Date: 2025-04-17T12:42:47Z
Creation Date: 2025-04-17T12:42:45Z
Registry Expiry Date: 2026-04-17T12:42:45Z
Registrar: IONOS SE
Registrar IANA ID: 83
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6105601459
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1029.UI-DNS.DE
Name Server: NS1044.UI-DNS.ORG
Name Server: NS1068.UI-DNS.BIZ
Name Server: NS1094.UI-DNS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-02T07:06: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