Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - dsoda.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Type: text/html
Last-Modified: Wed, 14 May 2025 17:37:02 GMT
Accept-Ranges: bytes
ETag: "889493cdf6c4db1:0"
Server: Microsoft-IIS/10.0
X-Powered-By: ASP.NET
X-Powered-By-Plesk: PleskWin
Date: Sun, 18 May 2025 13:16:27 GMT
Content-Length: 5169

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: dsoda.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="tr">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Designsoda 2025 – Cam Baloncuklar</title>
  <style>
    /* Font yüklemeleri */
    @font-face { font-family: 'DT Ampla TR'; src: url('14_DT AmplaTR.ttf') format('truetype'); font-weight: 400; }
    @font-face { font-family: 'DT Ampla TR'; src: url('12_DT AmplaTR11.ttf') format('truetype'); font-weight: 700; }
    @font-face { font-family: 'MetaPlusBook'; src: url('19_MetaPlusBookRomanTiTR7.ttf') format('truetype'); font-weight: 400; }
    @font-face { font-family: 'MetaPlusBold'; src: url('21_MetaPlusBoldRomanTiTR.ttf') format('truetype'); font-weight: 700; }
    @font-face { font-family: 'MetaPlusLight'; src: url('32_MetaPlusBookRomanTiTR4.ttf') format('truetype'); font-weight: 300; }
    @font-face { font-family: 'DT Ampla 8pt'; src: url('78_DT Ampla_8pt_st.ttf') format('truetype'); }

    /* Genel sıfırlama */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { overflow: hidden; font-family: 'MetaPlusBook', sans-serif; }
    nav {
      background: rgba(255,255,255,0.8);
      padding: 1rem;
      position: fixed;
      top: 0; width: 100%;
      display: flex; align-items: center;
      z-index: 100; backdrop-filter: blur(6px);
      font-family: 'DT Ampla TR', sans-serif;
    }
    nav img { height: 40px; margin-right: 20px; }
    nav .menu a {
      margin: 0 10px; font-weight: 700; color: #012433;
      text-decoration: none; cursor: pointer;
    }
    .hero {
      position: relative; width: 100%; height: 100vh;
      padding-top: 70px; overflow: hidden;
      background: url('17.svg') no-repeat center center;
      background-size: cover;
    }
    .bubble-wrapper {
      position: absolute;
      animation: floatUp var(--speed) var(--delay) linear infinite;
    }
    .bubble-wrapper:hover {
      animation-play-state: paused;
    }
    .bubble {
      width: var(--size); height: var(--size);
      background-image: url('3.svg'); background-size: contain;
      background-repeat: no-repeat; background-position: center;
      transition: transform 0.3s ease;
    }
    .bubble-wrapper:hover .bubble {
      transform: scale(1.2);
    }
    /* S-curve hareketi tüm süre boyunca */
    @keyframes floatUp {
      0%   { transform: translate(0, 0); opacity: 0; }
      20%  { transform: translate(10px, -20vh); opacity: 1; }
      40%  { transform: translate(-10px, -40vh); }
      60%  { transform: translate(10px, -60vh); }
      80%  { transform: translate(-10px, -80vh); }
      100% { transform: translate(0, calc(-100vh + 70px)); opacity: 0; }
    }
  </style>
</head>
<body>
  <nav>
    <img src="logo.png" alt="Designsoda Logo" />
    <div class="menu">
      <a>soda</a><a>kronolojik</a><a>müşteriler</a>
      <a>kategoriler</a><a>iş ortaklarımız</a>
      <a>iletişim</a><a>english</a>
    </div>
  </nav>
  <section class="hero"></section>
  <script>
    document.addEventListener("DOMContentLoaded", () => {
      const hero = document.querySelector('.hero');
      const total = Math.ceil(25 * 1.5); // 38 kabarcık
      const gallery = Array.from({ length: 10 }, (_, i) => `pdf_images/page_${i+1}.jpg`);
      for (let i = 0; i < total; i++) {
        const baseSize = 40 + Math.random() * 40;
        const scaledSize = baseSize * 0.7;
        const size = `${scaledSize.toFixed(1)}px`;
        // Hız formülü: orijinal (120-baseSize)/5, %50 artırılmış
        const speedVal = (120 - baseSize) / 5 / 1.5;
        const speed = `${speedVal.toFixed(1)}s`;
        const delay = `-${(Math.random() * speedVal).toFixed(1)}s`;
        const wrapper = document.createElement('div');
        wrapper.className = 'bubble-wrapper';
        wrapper.style.setProperty('--size', size);
        wrapper.style.setProperty('--speed', speed);
        wrapper.style.setProperty('--delay', delay);
        wrapper.style.left = `${Math.random() * 100}%`;
        wrapper.style.bottom = `-${size}`;
        wrapper.style.zIndex = `${Math.ceil(scaledSize)}`;
        const bubble = document.createElement('div');
        bubble.className = 'bubble';
        wrapper.appendChild(bubble);
        wrapper.addEventListener('click', () => {
          const idx = i % gallery.length;
          const overlay = document.createElement('div');
          overlay.style.cssText =
            'position:fixed;top:0;left:0;width:100%;height:100%;' +
            'background:rgba(0,0,0,0.9);display:flex;align-items:center;' +
            'justify-content:center;z-index:1000;opacity:0;transition:opacity 0.5s ease;';
          const img = document.createElement('img');
          img.src = gallery[idx]; img.style.maxWidth = '90%'; img.style.maxHeight = '80%';
          overlay.appendChild(img);
          document.body.appendChild(overlay);
          requestAnimationFrame(() => overlay.style.opacity = 1);
          overlay.addEventListener('click', () => {
            overlay.style.opacity = 0;
            setTimeout(() => overlay.remove(), 500);
          });
        });
        hero.appendChild(wrapper);
      }
    });
  </script>
</body>
</html>
                               

Whois info of domain

Domain Name: DSODA.COM
Registry Domain ID: 96916384_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.rrpproxy.net
Registrar URL: http://www.key-systems.net
Updated Date: 2025-04-18T07:08:43Z
Creation Date: 2003-04-17T08:31:55Z
Registry Expiry Date: 2026-04-17T08:31:55Z
Registrar: Key-Systems GmbH
Registrar IANA ID: 269
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +49.68949396850
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.VARGONEN.NET
Name Server: NS2.VARGONEN.NET
Name Server: NS3.VARGONEN.NET
Name Server: NS4.VARGONEN.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-18T13:16:08Z <<<
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